SUM()

Syntax. SUM(number1,number2,...)

Definition. This function adds all numbers specified as arguments.

Arguments

Background. The result of an addition operation is called the sum. The sign for addition is the plus sign (+), but the Σ is also used:

x = a + b + c + d + ...

or

x = Σ(a, b, c, d...)

The arguments for the SUM() function can be numbers, logical values, and numerals when directly entered in the formula. For example:

Note

Text and logical values in a cell reference are ignored.

If an argument is an array or a reference, only the numbers in that array or reference are counted. Empty cells, logical values, or text in the array or reference are ignored.

Arguments that are error values or text that cannot be converted into numbers cause errors.

Example. There are so many practical uses that Excel provides the Σ symbol in the start bar as well as in the function bar. No Excel user wants to do without this function; for example, to add expenses: =SUM(3.25,5.30,4.70) returns 13.25.

More examples:

See Also

AVERAGE(), COUNT(), DCOUNTA(), PRODUCT(), SUMPRODUCT()