Microsoft Excel is an essential tool used by students, professionals, and analysts for a wide range of tasks such as accounting, budgeting, invoicing, and reporting. One of the foundational skills in Excel is using arithmetic formulas for basic calculations. This tutorial provides a complete guide to Excelβs basic arithmetic formulas with explanations, syntax, examples, and practical use cases.
Arithmetic formulas in Excel are expressions that allow you to perform mathematical calculations using arithmetic operators. These include:
These formulas work directly with numbers, constants, and cell references, making Excel a dynamic tool for financial modeling and analysis.
Every formula in Excel starts with an equal sign =. This tells Excel that what follows is a formula and not just text or a number.
=A1 + B1This adds the values in cells A1 and B1.
=number1 + number2
=10 + 12Example with Cell References
=A2 + B2
=SUM(A1:A5)
If columns A and B represent two different store sales, calculate total sales:
=A2 + B2
=number1 - number2
=20 - 5Example with Cell References
=A2-B2

=Revenue - Cost
=E2 - F2
=number1 * number2
=4 * 6Example with Cell References
=A3 * B3=Quantity * Price
=A2*B2=number1 / number2
=100 / 5Example with Cell References
=TotalAmount / Units=E2 / F2=TotalCost / Quantity
=G2 / H2
=base ^ power
=5 ^ 2Example: Cube of a number in a cell
=A2 ^ 3=Number * Percentage
=500 * 10%=Number * (1 + Percentage)
=200 * (1 + 5%)=Number * (1 - Percentage)
=200 * (1 - 10%)
Excel follows the BODMAS rule (Brackets, Orders, Division/Multiplication, Addition/Subtraction) when evaluating formulas.
=10 + 5 * 2
Result: 20
Example with Parentheses:
=(10 + 5) * 2
Result: 30
=OriginalPrice * (1 - DiscountRate)
=B2 * (1 - C2)
=(SellingPrice - CostPrice) / SellingPrice
=(B2 - C2) / B2
=Maths + Science + English
=A2 + B2 + C2
=Principal * (1 + Rate/100)^Time
=A2 * (1 + B2/100)^C2
Suppose A1 has price and B1 has quantity, define them as Price and Quantity respectively. Then:
=Price * Quantity
=SUM(A1:A5)
Calculate totals, averages, or percentages using arithmetic formulas and visualize them using charts:
=IFERROR(A1 / B1, "Invalid")
This prevents division by zero errors.
=SUM(A1:A5) * 10%Using ROUND to Round Calculations
=ROUND(A1 * B1, 2)
=IF(A1 - B1 > 100, "Profit", "Loss")
| Operator | Symbol | Example | Description |
|---|---|---|---|
| Addition | + | =A1+B1 | Adds two numbers |
| Subtraction | - | =A1-B1 | Subtracts second from first |
| Multiplication | * | =A1*B1 | Multiplies numbers |
| Division | / | =A1/B1 | Divides first by second |
| Exponent | ^ | =A1^2 | Raises to the power |
| Percentage | *% | =A1*10% | Calculates percentage |
Mastering basic arithmetic formulas in Excel is a crucial step toward becoming proficient in data handling, financial modeling, and business analysis. These formulas are not only foundational but are also used in conjunction with advanced functions to build complex models. By understanding how to apply addition, subtraction, multiplication, division, exponentiation, and percentage calculations in Excel, users can unlock powerful data insights and improve their decision-making processes.
To further enhance your Excel skills, practice these formulas on real-world examples like budget spreadsheets, invoices, profit-loss statements, and student mark sheets. The better you understand the arithmetic capabilities of Excel, the more effectively you can use it to automate and analyze your work.
Go to View β Freeze Panes to keep a row or column visible while scrolling.
Select data β Click Insert β Chart β Choose a chart type (bar, line, pie, etc.).
=IF(A1>10, "High", "Low") returns "High" if A1 is greater than 10; otherwise, it returns "Low".
Relative (A1): Changes when copied.
Select data β Click Insert β PivotTable β Choose where to place it.
VLOOKUP: Searches vertically in columns.
Click File β Save As, choose a location, enter a filename, and select a format (e.g., .xlsx, .csv).
Select column β Click Data β Text to Columns β Choose delimiter (e.g., comma, space).
Use =SUM(A1:A5) to add values in the range A1 to A5.
Use =COUNTIF(A1:A10, ">50") to count numbers greater than 50 in A1:A10.
Select data β Click Data β Remove Duplicates.
Count numbers: =COUNT(A1:A10)
Select cells β Click Conditional Formatting in the Home tab β Choose a rule (e.g., highlight values greater than 50).
Click the Pivot Table β Click Refresh under the PivotTable Analyze tab.
Select a cell β Data β Data Validation β Set rules (e.g., allow only numbers or dropdown lists).
Excel is a spreadsheet software used for data analysis, calculations, graphing, and automation.
It searches for a value in the first column of a range and returns a value from another column.
Use =A1 & " " & B1 or =CONCATENATE(A1, " ", B1).
Copyrights © 2024 letsupdateskills All rights reserved