Arithmetic operations in Excel are simple calculations performed using mathematical operators. Here’s a quick guide on how to use them:
1. Operators in Excel:
- Addition:
+ - Subtraction:
- - Multiplication:
* - Division:
/ - Exponentiation:
^
2. How to Perform Arithmetic Operations:
Example Data Setup:
| A | B |
|---|---|
| 10 | 5 |
- Cell A1 contains
10, and B1 contains5.
Basic Formulas:
- Addition:
- Formula:
=A1 + B1 - Result:
15
- Formula:
- Subtraction:
- Formula:
=A1 - B1 - Result:
5
- Formula:
- Multiplication:
- Formula:
=A1 * B1 - Result:
50
- Formula:
- Division:
- Formula:
=A1 / B1 - Result:
2
- Formula:
- Exponentiation (Power):
- Formula:
=A1 ^ B1 - Result:
10^5 = 100000
- Formula:
3. Steps to Perform Arithmetic Operations in Excel:
- Select the cell where you want the result.
- Type the
=sign to begin the formula. - Use cell references (like
A1andB1) or numbers in the formula. - Press Enter to see the result.
4. Mixed Operations:
Excel follows the Order of Operations (PEMDAS):
- Parentheses
- Exponents
- Multiplication and Division (from left to right)
- Addition and Subtraction (from left to right)
Example:
- Formula:
=(A1 + B1) * 2 - Calculation:
(10 + 5) * 2 = 30