The SUM function in Google Sheets is a foundational tool for adding up a series of numbers, making it indispensable for financial analysis, inventory management, and many other tasks. Whether you're totaling monthly sales, summing up expenses, or calculating the total points in a game, the SUM function is the cornerstone. Dive into our comprehensive guide to harness its capabilities.
Parameters
value1: The first value or range to be summed.value2, ...: [Optional] Additional numbers or ranges to be added.
Step-by-Step Tutorial
-
Using
SUMwith individual numbers:- Example:
=SUM(3, 10, 5) - Result:
18
- Example:
-
Using
SUMwith a range of cells:- Example: If
A1:A5has the values5, 10, 3, 8, 7, then=SUM(A1:A5)will return33.
- Example: If
Working with a Single Value, a List, and a Range
SUM accepts numbers one at a time, as a comma-separated list, or as a range — mix and match freely.
- Single value:
=SUM(A1)— just returns the value inA1. - List of values:
=SUM(A1, A2, A3)— adds each cell individually. - Range:
=SUM(A1:A10)— adds every cell in the range. - Mixed:
=SUM(A1, A3:A6, 10)— you can combine single cells, ranges, and literal numbers in one call.
Video Example
Use Cases and Scenarios
- Financial Reporting: Calculate the total revenue over a quarter.
- Inventory Management: Sum up the total products sold across various categories.
- Educational Grading: Compute the total score of a student across all subjects.
Related Functions
SUMIF: Sum the values that meet a specific criterion.SUMIFS: Sum values based on multiple criteria.SUMPRODUCT: Multiply corresponding components in the given arrays, and then return the sum of those products.