Published by Patrick Mutisya · 14 days ago
Know and understand the characteristics and use of absolute and relative cell referencing in spreadsheet formulas.
| Reference Type | Notation | Behaviour When Copied Down One Row | Behaviour When Copied Right One Column |
|---|---|---|---|
| Relative | A1 | A2 | B1 |
| Absolute | \$A\$1 | \$A\$1 | \$A\$1 |
| Mixed (column absolute) | $A1 | $A2 | $B1 |
| Mixed (row absolute) | A$1 | A$1 | B$1 |
In cell C2 we calculate the total price:
\$C2 = A2 \times B2\$
When the formula is dragged down to C3, it automatically becomes \$C3 = A3 \times B3\$ because the references are relative.
Assume the tax rate (5 %) is stored in cell E1. To calculate tax on each amount in column A:
\$B2 = A2 \times \$E\$1\$
Copying this formula down column B keeps the reference to E1 unchanged.
Row headers (values 1‑5) are in A2:A6, column headers (values 1‑5) are in B1:F1. To fill the table B2:F6:
Enter in B2 the formula \$B2 = \$A2 \times B\$1\$ and copy across and down.
Explanation:
Given the following data:
| Cell | Content |
|---|---|
| D1 | 0.08 (8 % discount) |
| A2 | 120 |
| B2 | 150 |
| C2 | 200 |
Write a formula in E2 that calculates the discounted price for the value in A2. Then copy the formula across to F2 and G2 so that each column uses its own original price but the same discount rate.
Solution (not shown) should use an absolute reference to D1 (e.g., \$D\$1) and relative references to the price cells.
$ before the column letter, row number, or both to lock that part of the reference.