πŸ“Š SUM Function: The Basic Formula for Calculating Totals in Google Sheets

πŸ” What is the SUM function?

The SUM function is one of the most essential and fundamental functions in Google Sheets.
It allows you to calculate the total of selected numeric cells quickly and efficiently.

For example, if you want to add up the values from A1 to A5, simply enter:

=SUM(A1:A5)

It works exactly like in Excel, making it very familiar for spreadsheet users.


πŸ§ͺ Basic Syntax

=SUM(number1, [number2, ...])
  • Each argument can be a number, a cell reference, a range, or a combination.
  • You can mix ranges and specific values.

πŸ“Œ Example 1: Adding a single range

A
110
220
330
=SUM(A1:A3)

πŸ‘‰ Result: 60
πŸ‘‰ Empty or text cells are ignored.


πŸ“Œ Example 2: Summing multiple ranges

AB
1105
22015
33025
=SUM(A1:A3, B1:B3)

πŸ‘‰ Result: 105
πŸ‘‰ Explanation: 60 (from A1:A3) + 45 (from B1:B3)


πŸ“Œ Example 3: Mixing values and ranges

=SUM(10, 20, 30, A1:A3)

Assuming A1:A3 = 1, 2, 3
πŸ‘‰ Result: 10 + 20 + 30 + 1 + 2 + 3 = 66


πŸ“Œ Example 4: Using SUM with conditions (no SUMIF)

You can use FILTER to dynamically sum only values that meet a condition.

=SUM(FILTER(A1:A10, B1:B10="Completed"))

πŸ‘‰ This sums only the A column values where B equals "Completed"
πŸ‘‰ Very useful for status-based reports


πŸ’Ό Use Case β‘ : Monthly revenue totals

A (Date)B (Amount)
12025-07-01100000
22025-07-03250000
32025-07-15400000
42025-08-01300000
=SUM(FILTER(B1:B4, TEXT(A1:A4,"yyyy-mm")="2025-07"))

πŸ‘‰ Result: 750000 (only rows from July)


πŸ’Ό Use Case β‘‘: Summing salaries by department

A (Name)B (Dept.)C (Salary)
1KimSales3000000
2LeeMarketing3200000
3ParkSales3100000
=SUM(FILTER(C1:C3, B1:B3="Sales"))

πŸ‘‰ Result: 6100000
πŸ‘‰ You can build conditional sums without SUMIF


⚠️ Things to Watch Out For

CaseBehavior
Blank cellsIgnored
Text cellsIgnored
Error cellsEntire function may fail β†’ use with IFERROR or ISNUMBER

🧩 Frequently Combined With

FunctionPurpose
SUMIF, SUMIFSConditional sums
ARRAYFORMULAApply formulas across ranges
FILTERFilter data based on conditions
IFERRORPrevent error breakdowns
QUERYSQL-like condition-based aggregation

βœ… Summary

  • SUM is the most basic and widely used function in Google Sheets.
  • It works with direct values, ranges, and filtered results.
  • When combined with functions like FILTER, ARRAYFORMULA, and QUERY,
    it becomes a powerful tool for real-time reporting and automation.

Similar Posts

λ‹΅κΈ€ 남기기

이메일 μ£Όμ†ŒλŠ” κ³΅κ°œλ˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€. ν•„μˆ˜ ν•„λ“œλŠ” *둜 ν‘œμ‹œλ©λ‹ˆλ‹€