Menu
Coddy logo textTech

Arithmetic Operators

Part of the Fundamentals section of Coddy's Excel journey — lesson 14 of 42.

You've met + and *. Here's the full toolbox of arithmetic operators, the symbols formulas calculate with:

=B1+B2   addition
=B1-B2   subtraction
=B1*B2   multiplication
=B1/B2   division
=B1^B2   power

The new face is ^ (the caret), which raises a number to a power: =2^3 means 2×2×2 and shows 8, and =5^2 is 5 squared, 25.

Division is happy to produce decimals: =10/4 shows 2.5. No rounding, no fuss, Excel keeps the exact answer.

All five operators work the same way with cell references. If B1 holds 8 and B2 holds 2, then =B1/B2 shows 4 and =B1^B2 shows 64, and if the data changes, every result follows along.

challenge icon

Challenge

Easy

The sheet holds two numbers: x in B1 and y in B2. Below them, column A lists five calculations waiting for formulas.

Fill in column B using cell references:

  1. B4: x plus y
  2. B5: x minus y
  3. B6: x times y
  4. B7: x divided by y
  5. B8: x to the power y

Your formulas will be tested with different values of x and y, so reference B1 and B2, don't type the numbers.

Try it yourself

Sheet1
ABCDEFG
1x8
2y2
3
4x + y
5x - y
6x * y
7x / y
8x ^ y
9
10
11
12
13
14
quiz iconTest yourself

This lesson includes a short quiz. Start the lesson to answer it and track your progress.

All lessons in Fundamentals