0
0
Google Sheetsspreadsheet~10 mins

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

Choose your learning style9 modes available
Sample Data

This data shows a list of five numbers in cells A1 through A5.

CellValue
A110
A220
A330
A440
A550
Formula Trace
=AVERAGE(A1:A5)
Step 1: A1:A5
Step 2: SUM(A1:A5)
Step 3: COUNT(A1:A5)
Step 4: SUM(A1:A5) / COUNT(A1:A5)
Cell Reference Map
    A   
  +-----+
1 | 10  |
2 | 20  |
3 | 30  |
4 | 40  |
5 | 50  |
  +-----+

Formula references cells A1 through A5.
The formula uses the range A1:A5 which includes all five numbers.
Result
    A       B   
  +-----+-------+
1 | 10  |       |
2 | 20  |       |
3 | 30  |       |
4 | 40  |       |
5 | 50  |  30   |
  +-----+-------+

Cell B5 shows the result of =AVERAGE(A1:A5), which is 30.
The average of the numbers in A1 to A5 is 30, shown in cell B5.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the range A1:A5 contain?
AOnly the number 30
BThe numbers 10, 20, 30, 40, 50
CEmpty cells
DText values
Key Result
AVERAGE(range) sums all numbers in the range and divides by how many numbers there are.