Microsoft Excel For Beginers
About Lesson

Basic Math Operations in Excel: A Step-by-Step Guide

Microsoft Excel is a powerful tool for performing basic mathematical operations such as addition (+), subtraction (-), multiplication (*), and division (/). This document will guide you through the steps to perform these operations in Excel.


Table of Contents

Introduction to Excel Formulas
Addition (+)
Subtraction (-)
Multiplication (*)
Division (/)
Combining Operations
Tips and Best Practices


Introduction to Excel Formulas

In Excel, all formulas begin with an equal sign (=). This tells Excel that the content of the cell is a formula and not just text or numbers. You can use cell references (e.g., A1B2) or direct numbers in your formulas.


Addition (+)

To add numbers in Excel:

  1. Select the cell where you want the result to appear.

  2. Type = to start the formula.

  3. Enter the numbers or cell references you want to add, separated by the + sign.

    • Example: =A1+B1 adds the values in cells A1 and B1.

    • Example: =5+10 adds the numbers 5 and 10 directly.

  4. Press Enter to see the result.


Subtraction (-)

To subtract numbers in Excel:

  1. Select the cell where you want the result to appear.

  2. Type = to start the formula.

  3. Enter the numbers or cell references you want to subtract, separated by the - sign.

    • Example: =A1-B1 subtracts the value in B1 from A1.

    • Example: =20-7 subtracts 7 from 20 directly.

  4. Press Enter to see the result.


Multiplication (*)

To multiply numbers in Excel:

  1. Select the cell where you want the result to appear.

  2. Type = to start the formula.

  3. Enter the numbers or cell references you want to multiply, separated by the * sign.

    • Example: =A1*B1 multiplies the values in cells A1 and B1.

    • Example: =6*8 multiplies 6 and 8 directly.

  4. Press Enter to see the result.


Division (/)

To divide numbers in Excel:

  1. Select the cell where you want the result to appear.

  2. Type = to start the formula.

  3. Enter the numbers or cell references you want to divide, separated by the / sign.

    • Example: =A1/B1 divides the value in A1 by the value in B1.

    • Example: =50/5 divides 50 by 5 directly.

  4. Press Enter to see the result.


Combining Operations

You can combine multiple operations in a single formula. Excel follows the standard order of operations (PEMDAS/BODMAS):

  • Parentheses/Brackets

  • Exponents/Orders

  • Multiplication and Division (from left to right)

  • Addition and Subtraction (from left to right)

Example: =(A1+B1)*C1/D1

  • Adds A1 and B1.

  • Multiplies the result by C1.

  • Divides the result by D1.


Tips and Best Practices

  1. Use cell references instead of hardcoding numbers for flexibility.

  2. Always start formulas with =.

  3. Use parentheses to control the order of operations.

  4. Double-check your formulas for errors, especially when dividing (to avoid division by zero).

  5. Use the AutoSum feature (Alt + =) for quick addition of a range of cells.

0% Complete