Published by Patrick Mutisya · 14 days ago
Be able to replicate formulae using absolute and relative cell references where appropriate.
In a spreadsheet a cell reference tells a formula where to find the data it needs. There are three types of references:
A1).\$A\$1).\$A1 or A\$1).Absolute references are required when a formula must always refer to the same cell, such as a tax rate, a fixed price, or a constant multiplier.
Example: If the tax rate is stored in cell B1 and you want to calculate tax for many items, the formula in column C would be =A2*\$B\$1. When the formula is copied down, A2 changes to A3, A4, … but \$B\$1 always stays the same.
A small shop records the quantity sold and the unit price of three products. The shop wants to calculate:
E1.| Cell | Content / Formula | Description |
|---|---|---|
| A1 | Product | Header |
| B1 | Quantity | Header |
| C1 | Unit Price | Header |
| D1 | =B2*C2 | Total price (relative references) |
| E1 | 0.20 | VAT rate (fixed value) |
| F1 | =D2*\$E\$1 | VAT amount (absolute reference to rate) |
| G1 | =D2+F2 | Grand total (relative references) |
| A2 | Notebook | First product |
| B2 | 15 | Quantity sold |
| C2 | 2.50 | Unit price (£) |
| D2 | =B2*C2 | Calculated total price |
| F2 | =D2*\$E\$1 | VAT for this row |
| G2 | =D2+F2 | Grand total for this row |
| A3 | Pen | Second product |
| B3 | 30 | Quantity sold |
| C3 | 1.20 | Unit price (£) |
| D3 | =B3*C3 | Calculated total price |
| F3 | =D3*\$E\$1 | VAT for this row (absolute reference unchanged) |
| G3 | =D3+F3 | Grand total for this row |
Assume the formula =B2*C2 is entered in D2. When the fill handle is dragged down to D3 and D4, the formulas become:
D3 = B3*C3D4 = B4*C4Because the references are relative, the row numbers adjust automatically.
For the \cdot AT formula =D2*\$E\$1 in F2, copying down yields:
F3 = D3*\$E\$1F4 = D4*\$E\$1Here \$E\$1 stays fixed, ensuring the same tax rate is applied to every row.
$ signs results in the tax rate changing when the formula is copied.\$B\$2) prevents the formula from adapting to each row.A$1).| Reference Type | Notation | Behaviour when copied |
|---|---|---|
| Relative | A1 | Both column and row adjust. |
| Absolute | \$A\$1 | Neither column nor row changes. |
| Mixed (column fixed) | $A1 | Column stays the same; row adjusts. |
| Mixed (row fixed) | A$1 | Row stays the same; column adjusts. |
Complete the following steps in a spreadsheet:
D2 type =B2*C2 and copy the formula down to D5.0.15 in cell E1.F2 type =D2*\$E\$1 and copy down to F5.G2 type =D2+F2 and copy down to G5.E1 even after copying.