0Pricing
Excel Formulas Academy · Lesson

Totaling Numbers With SUM

Add an entire range in one step using =SUM(A1:A10).

Totaling Numbers With SUM is a free Excel Formulas Academy lesson on CoddyKit — lesson 1 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Excel Formulas Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Why Add by Hand?

Imagine a column of ten sales numbers. You could write =A1+A2+A3 and so on, but that gets long and easy to mistype. Spreadsheets give you a faster tool: the SUM function.

SUM adds up a whole group of cells in one short formula. Instead of listing every cell, you point SUM at a range and it totals everything inside.

In this lesson you will learn to total any list of numbers with a single, clean formula.

What a Function Is

A function is a built-in shortcut for a common task. It has a name (like SUM) followed by parentheses that hold the arguments you give it.

The shape is always the same:

  • = tells the spreadsheet to calculate
  • SUM is the function name
  • (A1:A10) is the argument inside parentheses

Every function follows this =NAME(arguments) pattern, so once you learn one, the rest feel familiar.

=SUM(A1:A10)

The SUM Syntax

The simplest form of SUM takes one range:

=SUM(range)

A range is two cell addresses joined by a colon. A1:A10 means every cell from A1 down to A10, including both ends. SUM adds the numbers in all of those cells.

Spaces and blank cells are ignored, and text values are skipped, so SUM focuses only on the numbers it finds.

=SUM(B2:B6)

A Worked Example

Suppose cells B2 through B6 hold weekly sales:

  • B2 = 100
  • B3 = 250
  • B4 = 175
  • B5 = 300
  • B6 = 125

Typing =SUM(B2:B6) returns 950. The spreadsheet looked at all five cells, added them, and showed one total.

If you later change B3 to 250 from 200, the total updates instantly. That is the power of formulas: they recalculate automatically.

=SUM(B2:B6)

Selecting the Range

You do not have to type the range by hand. After typing =SUM(, click the first cell and drag down to the last cell. The spreadsheet fills in the range for you.

This is often safer than typing, because you can see exactly which cells are highlighted before you press Enter.

When the highlight matches the numbers you want, type the closing ) and press Enter to finish.

=SUM(C2:C12)

Summing a Whole Column

Sometimes you want to total every value in a column, even rows you have not filled yet. You can reference the entire column:

=SUM(D:D)

This adds every number in column D. New entries you type later are included automatically, which is handy for growing lists.

Just be careful not to place this total inside column D itself, or you create a circular reference where the cell tries to add itself.

=SUM(D:D)

SUM Ignores Text and Blanks

Real data is messy. A column might have a header word, a few blank rows, or a note typed in by hand. SUM handles this gracefully.

If you write =SUM(A1:A10) and A1 contains the text "Sales", SUM simply skips it. Blank cells count as nothing. Only actual numbers are added.

This means you can safely include a header cell in your range without breaking the total.

=SUM(A1:A10)

Totaling a Row

SUM works horizontally too. If a row holds monthly figures across columns, point SUM at that row:

=SUM(B2:M2)

This adds the twelve cells from B2 to M2, perfect for a yearly total at the end of a row.

The colon range works in any direction. As long as the cells line up in a straight block, SUM can total them.

=SUM(B2:M2)

A Larger Worked Example

A small shop tracks daily revenue for a week in cells E2 through E8. The values are 420, 380, 510, 295, 600, 720, and 650.

The formula =SUM(E2:E8) returns 3575, the week's total revenue.

Without SUM you would chain seven additions and risk a typo. With SUM, one short formula does the work and stays correct even if a daily figure is edited.

=SUM(E2:E8)

Same Formula in Excel and Sheets

Good news: SUM works identically in Microsoft Excel and Google Sheets. The syntax =SUM(range) is the same in both.

Most of the everyday functions you will learn behave the same way across both programs. When a function differs, we will point it out.

For SUM, you can move a sheet between Excel and Google Sheets and the totals keep working without any changes.

=SUM(A2:A20)

Common SUM Mistakes

Watch out for two easy slips:

  • Forgetting the equals sign. Typing SUM(A1:A10) shows the text instead of a total.
  • Wrong range. =SUM(A1:A9) when your data runs to A10 quietly leaves out the last number.

Always glance at the highlighted range and check that the first and last cells are correct before pressing Enter.

=SUM(A1:A10)

Quick Check

Test your understanding of the SUM function.

Recap: SUM

You learned to total numbers fast with the SUM function:

  • Use the pattern =SUM(range), for example =SUM(A1:A10).
  • A range like A1:A10 means every cell from the first to the last.
  • SUM ignores text and blank cells, adding only numbers.
  • It works on columns, rows, and whole columns, and behaves the same in Excel and Google Sheets.

Next, you will find the average of a range instead of the total.

=SUM(A1:A10)

Frequently asked questions

Is the “Totaling Numbers With SUM” lesson free?

Yes — the full text of “Totaling Numbers With SUM” is free to read here on the web, and the Excel Formulas Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Excel Formulas Academy course, upgrade to CoddyKit PRO.

What will I learn in “Totaling Numbers With SUM”?

Add an entire range in one step using =SUM(A1:A10). You practise Excel Formulas Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Excel Formulas Academy?

No prior experience is required. Excel Formulas Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Totaling Numbers With SUM” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Excel Formulas Academy lesson?

Yes. Every Excel Formulas Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Totaling Numbers With SUM
  2. Finding the Mean With AVERAGE
  3. Mixing Ranges and Single Cells in SUM
  4. AutoSum and Quick Calculations
← Back to Excel Formulas Academy