Google Sheets
SUM function in Google Sheets
Returns the sum of a series of numbers and/or cells.
=SUM(value1, [value2, ...])SUM syntax and parameters
Two arguments, one required.
- value1anyRequired
The first number or range to add together.
- value2anyRepeating
[ OPTIONAL ] - Additional numbers or ranges to add to value1.
SUM examples
Formulas you'll actually reuse.
Total deal value for the whole orders sheet:
=SUM(C2:C200)Result
148200Revenue net of refunds — two ranges in one formula:
=SUM(C2:C200) - SUM(D2:D200)Result
141350
SUM in Excel
Same name — your formula ports as-is.
Try SUM in the playground
Edit the example — nothing to install.
Preloaded with the SUM formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- ABSReturns the absolute value of a number.MathExcel
- ACOSReturns the inverse cosine of a value, in radians.MathExcel
- ACOSHReturns the inverse hyperbolic cosine of a number.MathExcel
- ACOTReturns the inverse cotangent of a value, in radians. .MathExcel
- ACOTHReturns the inverse hyperbolic cotangent of a value, in radians. Must not be between -1 and 1, inclusive..MathExcel
- ASINReturns the inverse sine of a value, in radians.MathExcel