Recall & Review
beginner
What does the
SUM function do in Google Sheets?The
SUM function adds up all the numbers in a range of cells and gives you the total.Click to reveal answer
beginner
How do you write a formula to add numbers in cells A1 to A5?
You write
=SUM(A1:A5). This adds all numbers from cell A1 through A5.Click to reveal answer
intermediate
Can
SUM add numbers from non-adjacent cells? How?Yes! You can list cells or ranges separated by commas, like
=SUM(A1, C1, E1).Click to reveal answer
beginner
What happens if some cells in the
SUM range are empty or have text?Empty cells or text are ignored. Only numbers are added.
Click to reveal answer
beginner
Why use
SUM instead of adding numbers with + signs?SUM is faster and cleaner, especially for many cells. It also updates automatically if you add more numbers in the range.Click to reveal answer
What formula adds numbers in cells B2 to B6?
✗ Incorrect
Use a colon ':' to specify a range in SUM, so =SUM(B2:B6) adds all cells from B2 to B6.
Which of these will correctly add cells A1, C1, and E1?
✗ Incorrect
Separate cells with commas inside SUM to add non-adjacent cells: =SUM(A1, C1, E1).
If cell A3 is empty, what does =SUM(A1:A5) do?
✗ Incorrect
Empty cells are ignored by SUM, so it adds only the cells with numbers.
Which is the best reason to use SUM instead of adding with plus signs?
✗ Incorrect
SUM is cleaner and updates automatically when you add numbers in the range.
What will =SUM(10, 20, 30) return?
✗ Incorrect
SUM adds all numbers given as arguments, so 10 + 20 + 30 = 60.
Explain how to use the SUM function to add numbers in a column from A1 to A10.
Think about how to tell Sheets to add a group of cells.
You got /3 concepts.
Describe what happens if some cells in the SUM range contain text or are empty.
Consider what SUM does with non-number cells.
You got /3 concepts.