Menu
Coddy logo textTech

Referencing Other Cells

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

A cell reference is just an address: column letter, then row number. A2 is column A, row 2. And a formula can point at any address on the sheet, the referenced cells don't have to sit next to each other or next to the formula.

This is how real tables work. Picture a shopping list with prices in column A and quantities in column B. The cost of the row is price times quantity:

=A2*B2

Put that in C2 and the total for row 2 appears, pulled from two different columns. Each row gets its own version: row 3's total is =A3*B3, and so on down the table.

Notice the pattern: the formula describes a relationship ("this row's price times this row's quantity"), not specific numbers. Change a price, and the total follows. That single idea powers every invoice, budget and report ever built in a spreadsheet.

challenge icon

Challenge

Beginner

A tiny shop table: row 1 has headers, and rows 2-3 each hold a Price (column A) and a Qty (column B).

Fill in the Total column with price times quantity:

  1. In C2: the total for row 2
  2. In C3: the total for row 3

Reference the cells, prices and quantities will change during testing.

Try it yourself

Sheet1
ABCDEFG
1PriceQtyTotal
243
3102
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