0
0
Excelspreadsheet~10 mins

AutoSum shortcut in Excel - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows two columns of numbers. We want to sum the numbers in column A and column B using the AutoSum shortcut.

CellValue
A110
A220
A330
A4
B15
B215
B325
B4
Formula Trace
=SUM(A1:A3)
Step 1: A1:A3
Step 2: SUM(10, 20, 30)
Cell Reference Map
    A    B
1 | 10 |  5 |
2 | 20 | 15 |
3 | 30 | 25 |
4 |    |    |

Formula in A4: =SUM(A1:A3) -> sums values in A1, A2, A3
The formula in cell A4 sums the values from cells A1 to A3.
Result
    A    B
1 | 10 |  5 |
2 | 20 | 15 |
3 | 30 | 25 |
4 | 60 |    |

Cell A4 shows the sum of A1 to A3, which is 60.
The sum of the numbers in cells A1 to A3 is displayed in cell A4.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula =SUM(A1:A3) calculate?
AThe total of values in cells A1, A2, and A3
BThe average of values in cells A1 to A3
CThe product of values in cells A1 to A3
DThe difference between A1 and A3
Key Result
SUM(range) adds all numbers in the specified range of cells.