Menu
Coddy logo textTech

Formulas with Cells

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

The real power of a spreadsheet is that formulas can use other cells. Instead of typing =4+3, you point at the cells that hold the numbers:

=A1+A2

This formula means: take whatever is in A1, add whatever is in A2. The formula doesn't care what those values are today, if the data changes, the result updates by itself. That's why accountants stopped using paper.

You can mix cells and numbers freely:

=A1*2
=B3+10
=A1+A2+A3

One thing to remember: a formula lives in a cell like any other value. If you put =A1+A2 in B1, then B1 shows the result, but behind the scenes it still holds the formula.

challenge icon

Challenge

Beginner

The sheet holds two numbers: one in A1 and one in A2.

Write formulas that use the cell references (not the numbers themselves!):

  1. In B1: the sum of A1 and A2
  2. In B2: the value of A1 multiplied by 2

Your formulas will be tested with different numbers in A1 and A2, that's why referencing the cells matters.

Try it yourself

Sheet1
ABCDEFG
17
25
3
4
5
6
7
8
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