0
0
Google Sheetsspreadsheet~10 mins

Why reference types affect formula behavior in Google Sheets - Formula Trace Breakdown

Choose your learning style9 modes available
Sample Data

This sheet has two columns of numbers (A and B). Column C will show sums using different reference types in formulas.

CellValue
A110
A220
A330
B15
B215
B325
C1
C2
C3
Formula Trace
=A1+B$1
Step 1: A1
Step 2: B$1
Step 3: 10 + 5
Cell Reference Map
    A    B    C
1 | 10 |  5 |    |
2 | 20 | 15 |    |
3 | 30 | 25 |    |
Formula in C1 references A1 (relative) and B$1 (mixed: absolute row 1).
Result
    A    B    C
1 | 10 |  5 | 15 |
2 | 20 | 15 | 25 |
3 | 30 | 25 | 35 |
Column C sums values from columns A and B. The mixed reference B$1 keeps row 1 fixed when formula is copied down, so B$1 always points to B1 (5).
Sheet Trace Quiz - 3 Questions
Test your understanding
What value does B$1 refer to when the formula is in cell C2?
AC1 (empty)
BB2 (15)
CB1 (5)
DA2 (20)
Key Result
Mixed references like B$1 keep the row fixed when copied, affecting how formulas calculate as they move.