Spreadsheet calculations
- A cell reference identifies a column and a row: B2 is in column B, row 2. A formula such as =B2*C2 multiplies the two referenced values.
- Relative references move with a copied formula. Copying =B2*C2 down one row changes the references to =B3*C3.
- SUM adds a range; AVERAGE calculates its mean. Before using a result, check the selected range, the values and whether the formula matches the task.
Worked example
B2 contains quantity 5 and C2 contains unit price £7. What formula gives the line cost?
- Line cost means quantity multiplied by unit price.
- Use =B2*C2.
- Check the result manually: 5 × £7 = £35.
=B2*C2 gives £35.
Watch for: Adding quantity and price instead of multiplying. Assuming a copied relative reference stays on the original row.