Totals and counts function

SUM

Add up the numbers.

Purpose

Add up a column of figures

Returns

The total of the numbers in the range

Syntax

=SUM(range1, [range2], ...)

ArgumentRequiredWhat goes here
range1RequiredThe cells to add, like C2:C13.
range2OptionalThe cells to add, like C2:C13.

How to use SUM

SUM adds the numbers in whatever you give it and quietly ignores anything that is not a number: text, blanks and headings all pass through without complaint.

That silence is the thing to watch. A column where three amounts arrived as text totals without an error and comes out short, and nothing on the sheet says so.

A total belongs directly under its column with a label beside it. Somebody has to be able to see what it is the total of.

Alt and the equals key writes the whole formula and guesses the range, which is right more often than not and worth checking either way.

Examples

Every result below is worked out by the same evaluator that marks your answers, on the sheet shown here.

Payables ageing — October.xlsxSheet1
Harbour Foods payables at 31 October 2026, with supplier terms alongside
ABCDEFGH
1InvoiceSupplierStatusDays overdueAmountSupplierTerms (days)
2INV-8801Brightwell PaperOverdue12940Ashgrove Catering30
3INV-8802Calder UtilitiesQueried471180Brightwell Paper30
4INV-8803Meridian FreightOverdue632450Calder Utilities14
5INV-8804Ashgrove CateringOn terms0405Meridian Freight45
6INV-8805Brightwell PaperOverdue38760Thornbury Print60
7INV-8806Thornbury PrintOverdue911320
8INV-8807Meridian FreightOn terms0580
9INV-8808Calder UtilitiesOverdue24215
FormulaResult
=SUM(E2:E9)The ledger total.7850
=SUM(E2:E5)+SUM(E6:E9)Two halves adding back to the whole, which is how a total gets proved rather than trusted.7850
=SUM(A2:A9)A column of invoice numbers, which are text. SUM finds nothing to add and says nought rather than complaining.0
=SUM(E2:.E40)The same total written over a generous block so next month can be pasted underneath. The dot trims the empty rows off the end before the range is read.7850

Notes

  • SUM ignores text and blanks. Use COUNT against COUNTA to find out whether it should have.
  • Adding cells one at a time with plus signs gives the same answer and stops working the moment a row is inserted.
Practise SUM in Unit 01

A reference tells you what it does. A unit makes you use it.