Basic formula syntax
=A2*B2
Use when
Use an equals sign first, then combine numbers, cell references and operators.
Example
If A2 is 12 and B2 is 4, =A2*B2 gives 48.
Higher Applications of Mathematics
Quick reference cards for spreadsheet syntax, references, finance formulae, charts, trendlines and common errors.
=A2*B2
Use an equals sign first, then combine numbers, cell references and operators.
If A2 is 12 and B2 is 4, =A2*B2 gives 48.
=B2+C2
Use cell references so a spreadsheet updates when values change.
If B2 is income and C2 is overtime, =B2+C2 gives total pay.
=B2*$E$1
Use dollar signs to lock a cell when copying a formula.
If E1 stores VAT rate, =B2*$E$1 copies down without moving E1.
=B2-C2
Use normal references when the row or column should change as the formula copies.
Copying =B2-C2 down becomes =B3-C3, =B4-C4, and so on.
=(new-old)/old
Use when comparing a new value with its original value.
=(C2-B2)/B2 gives the percentage change from B2 to C2.
=B2*(1+C2)
Use when a value grows or falls by a percentage each period.
Balance in B2 with 3% in C2 uses =B2*(1+C2).
=B2*(1+C2)^D2 or =B2/(1+C2)^D2
Use multiplication for future value and division for present value.
Future value: =1000*(1+4%)^5.
interest = opening balance * rate
Use columns for opening balance, interest, payment, capital repaid and closing balance.
Capital repaid can be =payment-interest.
Check labels, units, scale, trendline and R-squared
Use before interpreting a chart or regression trendline.
A scatter graph should have both axes labelled with units.
#DIV/0!, #VALUE!, #REF!, #NAME?
Use errors to diagnose the problem in a formula.
#REF! often means a formula points to a deleted cell.