Dashboard Mode - Why reference types matter
Dashboard Goal
Understand how relative and absolute cell references affect formulas when copying them across cells.
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?