Excel Sum Function
There are plenty of ways to add numbers in Excel, and the SUM function is often written off as boring or simple. The SUM function, while simple on the surface, is more powerful than it typically gets credit for and can save you lots of time if you utilize it to its full potential. Sure, you can use Excel's basic "+" operator, but you can also use the SUM function to add several numbers, or a range of numbers, quickly and efficiently with a smaller chance of error.
SUM Function Syntax
=SUM(number1, [number2], ...)
- number\_1: The SUM function requires at least one numerical argument (number inside the perentheses separated by commas).
- number\_2: Each additional argument in the SUM function is optional. The SUM function requires only one argument, but can optionally have any number of additional arguments, up to a maximum of 255 total arguments.
Using the SUM Function in Excel
| A | B | C | D | E | |
| 1 | |||||
| 2 | 5 | 8 | |||
| 3 | |||||
| 4 |
The SUM function returns the sum of all arguments, or values inside the function parentheses separated by commas. Think of a function's arguments as its inputs. The following sum function takes cells B2 and D2 as its arguments and returns their sum:
=SUM(B2, D2)
The SUM function above would return a value of 13.
Excel will let you keep adding arguments separated by commas, so you can continue to add arguments to the function above and the function will return the sum of all of the arguments provided. In fact, while only one argument is required for this function, Excel will let you add up to 255 individual arguments.
However, if you want to find the sum of multiple adjacent cells, it can be more efficient to pass a range of cells as an argument to the SUM function.
Using the SUM Function on a Range of Cells
| A | B | C | D | E | |
| 1 | |||||
| 2 | 5 | 4 | 8 | 2 | |
| 3 | |||||
| 4 |
=SUM(B2:E2)
The SUM function above would return a value of 19. A range in Excel may contain any number of cells.
More Range Options
| A | B | C | D | E | |
| 1 | |||||
| 2 | 5 | 4 | 8 | ||
| 3 | 3 | 7 | 5 | ||
| 4 | 9 | 0 | 2 |
Vertical Cell Ranges
You can use functions with different types of cell ranges in Excel. In addition to "horizontal" ranges like B2:E2 mentioned above, you can also use "vertical" ranges across multiple rows:
=SUM(B2:B4)
This SUM function would return 17.
2-Dimensional Cell Ranges
You can even use a "2 Dimensional" range across multiple rows and across multiple columns. To add every number in the table above, you can use the following:
=SUM(B2:D4)
Summing Entire Columns
Sometimes in Excel you may want to find the sum of every single number that appears in a specific column, regardless of its row. The following formula returns the sum of the entire C column.
=SUM(C:C)
The formula above would return 11, because this is the sum of every number in column C.
Summing Entire Rows
You can also find the sum of every number in a specific row. Say you wanted the sum of every number in row 4.
=SUM(4:4)
This formula would also return 11, as this is the sum of every number in row 4.
Another way to quickly sum up a group of cells is to use the Autosum shortcut in Excel.Using the SUM Function with Different Types of Arguments
Finally, Excel lets you mix and match the different types of arguments that you pass to the SUM function. As stated above, SUM can accommodate single cell references as arguments (such as A1), as well as a range of cells (such as A1:B5). SUM can also accommodate plain numbers (such as 5) as arguments, as well as another Excel function or formula. For example, =SUM(5, A1) is a valid function that will return the sum of cell A5 plus 5. Additionally, =SUM(5, (10/5)) is another valid function that will return the sum of 5 and 2. In fact, any or all of these types of arguments can be used with SUM:
- Number
- Cell reference
- Cell range
- Another function or formula
=SUM(5, A3, A2:D2, (3\*5))
is a valid function that returns the sum of 5, cells A3, A2, B2, C2, D2, and 15. As long as you have 255 arguments or fewer, any numerical value is fair game.
If a certain cell reference or range of cells contains text, Excel will simply ignore the text and only return the sum of the cells that contain numerical values.
Adding Numbers Which Meet a Certain Criteria
Sometimes in Excel you may wish to add together several numbers which meet a certain condition. Say, for example, that you want to add together every number in column A that is greater than 5. In this case you would use a function called SUMIF to add numbers which meet a certain condition.
=SUMIF(A:A, ">5")
The function above would add every number in column A that is greater than 5. Read more about the SUMIF function now!
If you want the sum of all the numbers which meet multiple conditions, see the SUMIFS function.
Excel SUM Function Video
Watch the video below to see the SUM function in action!
SUM Function - Excel Exercises - YouTube
Tap to unmute
SUM Function - Excel Exercises Excel ExercisesExcel Exercises996 subscribers
Watch on Continue to SUM practice exercises! →Images Referenced
- https://excelexercises.com/logo2.png
- https://excelexercises.com/excel-functions/excelImages/logoGreenWhite.png