Dashboard Mode - Why reference types matter
Dashboard Goal
Understand how relative and absolute cell references affect formulas when copying them across cells.
Jump into concepts and practice - no test required
Understand how relative and absolute cell references affect formulas when copying them across cells.
| Item | Price | Quantity | Tax Rate |
|---|---|---|---|
| Pen | 1.50 | 10 | 0.07 |
| Notebook | 3.00 | 5 | 0.07 |
| Eraser | 0.50 | 20 | 0.07 |
| Marker | 2.00 | 7 | 0.07 |
| Ruler | 1.00 | 15 | 0.07 |
=B2*C2 copied down. Shows how relative references change per row.=B2*C2*(1+D2) but tax rate is fixed with absolute reference $D$2 as =B2*C2*(1+$D$2). Copying this formula down keeps tax rate fixed.D2 used in formulas.+----------------------+--------------------------+ | Sample Data | Summary Table | | (Items, Price, Qty) | (Total Price, Price+Tax) | +----------------------+--------------------------+ | | | | | | +----------------------+--------------------------+
Changing the tax rate in cell D2 updates all total price with tax calculations automatically because of the absolute reference $D$2 in formulas.
Copying formulas down shows how relative references adjust for each row, while absolute references stay fixed.
If you change the tax rate in cell D2 from 0.07 to 0.10, which components update?
A1 when you copy a formula from one cell to another?A1 from one cell to another changes the reference to match the new location.$B$2.$B$2 correctly locks both column and row.=A1+B1 and you copy it to cell C2, what will the formula in C2 be?=A1+B1 uses relative references, so both A1 and B1 will shift down by one row when copied to C2.=SUM($A1:B$2) in cell C3. When copied to cell D4, what is the corrected formula to keep the intended reference range?$A1 locks column A but row changes; B$2 locks row 2 but column changes.$A1 to $A2 and B$2 to C$2.$A$1 must stay fixed when copying, so it needs absolute reference. The value in B2 should change row when copied down, so it stays relative.=B2*$A$1 keeps tax rate fixed and adjusts B2 row as copied down.