• Fri, Mar 2026

When I first started using Excel, I thought it was just a digital table. But once I learned how to make it calculate things automatically, my mind was blown. Excel isn’t just about typing numbers—it’s about making those numbers *work for you*.

In this tutorial, we’ll explore the four pillars of arithmetic in Excel: addition, subtraction, multiplication, and division. Trust me, once you get the hang of these, you’ll start seeing Excel as your personal calculator on steroids.

What Are Arithmetic Functions in Excel?

Arithmetic functions are the foundation of Excel formulas. They let you perform calculations just like on a calculator—but smarter, because Excel can handle hundreds of numbers at once! The four basic operations you’ll use most often are:

  • Addition (+) – Combine numbers or cell values.
  • Subtraction (–) – Find the difference between numbers.
  • Multiplication (×) – Multiply values together.
  • Division (÷) – Divide one value by another.

In Excel, every formula starts with an = sign. This tells Excel that you’re about to enter a formula, not just text.

1. Addition (+) in Excel

Addition is one of the simplest and most common operations in Excel. You can use it to sum numbers, add totals, or even combine results from different cells.

Example 1: Adding Numbers Directly

=10+20

Excel will display 30 as the result. Simple, right?

Example 2: Adding Cell Values

Let’s say you have values in cells A1 and B1, and you want to add them:

=A1+B1

This formula will take the value in cell A1, add it to B1, and show the result.

Pro Tip:

Instead of writing long addition formulas like =A1+B1+C1+D1, use the SUM function:

=SUM(A1:D1)

This adds up all the values from A1 through D1 in one go.

2. Subtraction (–) in Excel

Subtraction in Excel works just like addition, but instead of combining values, you’re finding the difference between them.

Example 1: Subtracting Numbers

=50-20

The result will be 30.

Example 2: Subtracting Cell Values

If you want to subtract the value in B1 from A1:

=A1-B1

This is useful for finding remaining amounts, like profit after expenses or stock balance after sales.

Real-World Example:

Imagine you’re tracking your monthly budget. Your income is in cell A2, and your expenses are in B2. To find your savings, use:

=A2-B2

Excel will automatically calculate your remaining amount. One glance, and you’ll know whether you can afford that weekend pizza party!

3. Multiplication (×) in Excel

Multiplication helps you quickly find totals like price times quantity, area, or even growth factors. The multiplication operator in Excel is the asterisk (*), not the “×” symbol you might be used to.

Example 1: Multiplying Numbers

=8*5

Excel returns 40.

Example 2: Multiplying Cell Values

=A1*B1

If A1 has 10 (price per item) and B1 has 3 (quantity), Excel will return 30.

Example 3: Calculating Total Sales

Suppose you have a product list where column A has Price and column B has Quantity. To find the total revenue per product in column C:

=A2*B2

Then, drag the fill handle (that tiny square in the corner of the cell) down the column to apply the formula for all rows.

4. Division (÷) in Excel

Division in Excel uses the forward slash (/) symbol. You can use it to calculate ratios, unit costs, averages, and much more.

Example 1: Dividing Numbers

=100/5

The result will be 20.

Example 2: Dividing Cell Values

=A1/B1

If A1 contains 50 and B1 contains 10, Excel will return 5.

Important Tip:

If you divide by zero, Excel will show an error: #DIV/0!. To handle this gracefully, you can use the IFERROR function:

=IFERROR(A1/B1,"Cannot divide by zero")

Combining Arithmetic Operators

You can mix these operators in a single formula. Just remember, Excel follows the Order of Operations (PEMDAS) — Parentheses, Exponents, Multiplication/Division, Addition/Subtraction.

=A1+B1*C1

Excel will multiply B1*C1 first, then add A1 to the result. To change the order, use parentheses:

=(A1+B1)*C1

Pro Tips for Excel Beginners

  • Always start formulas with an = sign.
  • Double-click the fill handle to auto-fill formulas down a column.
  • Use the Formula Bar to edit formulas easily.
  • Press F2 to quickly view or modify any formula in a cell.
  • Use parentheses () to make your formulas clear and avoid confusion.

Wrapping It Up

Congratulations! You’ve just mastered the basic arithmetic functions in Excel. These four operations—addition, subtraction, multiplication, and division—are the building blocks of every powerful spreadsheet you’ll ever create. Once you get comfortable using them, you’ll find yourself breezing through calculations that used to take minutes in mere seconds.

So, open your Excel sheet right now and try it out. Remember: Excel isn’t scary—it’s just math with a little bit of magic (and a lot of gridlines)!

This website uses cookies to enhance your browsing experience. By continuing to use this site, you consent to the use of cookies. Please review our Privacy Policy for more information on how we handle your data. Cookie Policy