Know and understand the characteristics and appropriate use of absolute, relative and mixed cell references in spreadsheet formulas.
Accurate formulas are essential when ICT systems process real‑world data such as bank transactions, medical records or inventory lists. A single error in a reference can cause large‑scale financial loss or incorrect decisions, highlighting the importance of understanding how references behave when formulas are copied across a worksheet.
$A1 or A$1). This is useful when one dimension of a table (the row header or the column header) must stay constant while the other varies.$ symbol before the part you want to lock.| Reference Type | Notation | Copy Down One Row | Copy 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 |
$E$1) and referenced absolutely in many calculations.=A2+B2‑C2=SUM(A2:A10)=AVERAGE(B2:B10)=IF(C2>100,"High","Low")=VLOOKUP(lookup_value, table_array, col_index, FALSE)=XLOOKUP(lookup_value, lookup_array, return_array, "Not found")=LOOKUP(lookup_value, lookup_vector, result_vector)Spreadsheets follow the BODMAS rule. Use brackets to control the sequence, for example:
= (A2 + B2) * $C$1
$E$1) via Formulas ► Define Name. The formula then becomes =A2*TaxRate, improving readability and reducing errors.Quantity and Price:
=[@Quantity] * [@Price]The reference automatically adjusts for each row of the table.
Restrict input to prevent mistakes:
Data ► Data Validation ► Whole number ► between 1 and 100Home ► Conditional Formatting ► New Rule ► Format only cells that are less than …= $A2 > $B$1.Data ► Sort. Example – sort a sales list by Amount descending.Data ► Filter. Example – show only orders where Status = "Pending".Ctrl + F or the Find & Replace dialog to locate specific values quickly.Page Layout ► Print Area ► Set Print Area).Page Layout ► Orientation, Margins, Fit Sheet on One Page.File ► Print ► Print Preview.File ► Export ► Create PDF/XPS Document.Review ► Protect Sheet / Protect Workbook. Assign a password if required.File ► Info ► Check for Issues ► Inspect Document.After calculations, insert a chart (Insert ► Chart) and customise titles, axes and colours. Export the chart:
.csv and import it into a database program for record‑keeping.In C2 calculate total price:
=A2*B2
Copying down to C3 automatically becomes =A3*B3 because both references are relative.
Tax rate (5 %) stored in E1. In B2 calculate tax on the amount in A2:
=A2*$E$1
Drag the formula down column B – the reference to E1 never changes.
Row headers (1‑5) in A2:A6, column headers (1‑5) in B1:F1. In B2 enter:
=$A2*B$1
Copy across to F2 and then down to F6. Explanation:
$A2 – column locked (so every row uses the correct row header), row changes.B$1 – row locked (so every column uses the correct column header), column changes.Define Discount as $D$1 (e.g., 0.08). In E2 calculate discounted price for A2:
=A2*(1-Discount)
Copy across to F2 and G2 – the discount remains constant while the price cells shift.
Convert the range A1:C5 to a table named Sales with columns Quantity and UnitPrice. In the calculated column Total enter:
=[@Quantity] * [@UnitPrice]
The formula automatically fills the column and updates for each row.
Data set
| Cell | Content |
|---|---|
| D1 | 0.08 (8 % discount) |
| A2 | 120 |
| B2 | 150 |
| C2 | 200 |
E2 write a formula that gives the discounted price for the value in A2.F2 and G2 so each column uses its own original price but the same discount rate.Solution (showing only the first cell):
=A2*(1-$D$1)
When copied, the reference to D1 stays absolute while the price reference shifts.
.xlsx – full functionality..csv – plain‑text data for import into databases.Year\Subject\Assessment\) and include version numbers (Report_v1.xlsx).$.$A, a row with 1$, or both with $A$1.Create an account or Login to take a Quiz
Log in to suggest improvements to this note.
Your generous donation helps us continue providing free Cambridge IGCSE & A-Level resources, past papers, syllabus notes, revision questions, and high-quality online tutoring to students across Kenya.