Back to functions
Math & Trig2026-03-146 related articles

SUM Function in Excel

Add numbers, cell references, and ranges together in a single formula.

Syntax

SUM(number1, [number2], ...)

Arguments

number1

Required

The first number, cell, or range to add.

number2

Optional

Additional numbers, cells, or ranges to include in the total.

What it returns

Returns the total of all included numbers and ranges.

What SUM does

SUM is the standard addition function in Excel. It can total individual numbers, single cells, multiple ranges, or combinations of all three.

Because it is simple and flexible, SUM appears everywhere from quick totals to large financial models.

Practical examples

Add a continuous range

=SUM(B2:B12)

This is the most common use of SUM and is ideal for column totals.

Add separate values and ranges together

=SUM(B2:B10,D2:D10,F2)

SUM can combine non-adjacent inputs cleanly without using multiple plus signs.

Common mistakes and notes

Numbers stored as text

If values look like numbers but are stored as text, SUM may ignore them. Check alignment, formatting, and data import steps when totals seem low.

Double-counting

Be careful when mixing overlapping ranges, such as B2:B10 and B5:B8. Excel adds everything you give it, including duplicates.

SUM is often better than manual addition

=B2+B3+B4+B5 works, but =SUM(B2:B5) is easier to audit and easier to expand later.

Related functions

Related articles

Deep dives, troubleshooting guides, and practical examples that use SUM.

BeginnerFeatures
2023-09-18

Learn How to Add In Excel Using the SUM Function and AUTOSUM

We focus here on the SUM function and AUTOSUM feature, demonstrating how these tools are essential for understanding how to add in Excel....

#add#sum
5 min read
Read Article
FormulasGeneral Updates
2020-05-01

The Data Adds Up: Using the Addition Formula in Excel

In this article you'll learn the basic addition formula for Excel with examples and a how-to guide for entering formulas and using the sum feature....

#addition-formula-in-excel
6 min read
Read Article
FormulasGeneral Updates
2018-06-01

Excel SUM Formula: What Is It And When Do I Use It?

Perhaps one of Excel's best-known functions is the SUM formula. Learn more about a subset of data by totaling rows, columns and more with excel sum formula....

6 min read
Read Article
Formatting
2018-03-30

How to Add Cells in Excel to Sum Up Totals Automatically

Excel's great for displaying data and even better at crunching numbers. Here's how to add cells in Excel to sum up totals automatically... Even when you change the numbers....

#excel#excel-2003#excel-2007#excel-2010#excel-2011#excel-update#formulas#functions#tips
5 min read
Read Article
BeginnerFormulas
2010-08-24

Using the SUM Function for a Running Total in Excel

Using the SUM Function in Excel to provide a running total time for song duration....

2 min read
Read Article
FormulasIntermediate
2010-08-12

iTunes Playlist Export Task – Convert Seconds to a Time Format

Converting seconds to a minutes:seconds time format requires several formulas....

1 min read
Read Article

Official documentation