0
0
Google Sheetsspreadsheet~10 mins

SUM function in Google Sheets - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows two columns of numbers. Column A has 10, 20, 30 and Column B has 5, 15, 25.

CellValue
A110
A220
A330
B15
B215
B325
Formula Trace
=SUM(A1:A3)
Step 1: A1:A3
Step 2: SUM(10, 20, 30)
Cell Reference Map
10
20
30
The formula references cells A1, A2, and A3, which contain 10, 20, and 30 respectively.
Result
    A    B    C
1  10    5   
2  20   15   
3  30   25   
4        =SUM(A1:A3) -> 60
The formula in cell C4 sums the values in A1 to A3 and shows the result 60.
Sheet Trace Quiz - 3 Questions
Test your understanding
What values does the formula SUM(A1:A3) add together?
A10, 5, 15
B10, 20, 30
C5, 15, 25
D20, 30, 25
Key Result
SUM(range) adds all numbers in the specified range together.