Recall & Review
beginner
What does the COUNT function do in Google Sheets?
The COUNT function counts how many cells in a range contain numbers. It ignores empty cells and cells with text.
Click to reveal answer
beginner
What is the difference between COUNT and COUNTA functions?
COUNT counts only cells with numbers. COUNTA counts all non-empty cells, including numbers, text, logical values, and errors.
Click to reveal answer
beginner
Write a formula to count all non-empty cells in the range A1:A10.
Use =COUNTA(A1:A10) to count all cells that are not empty in the range A1 to A10.
Click to reveal answer
beginner
If a range contains numbers, text, and empty cells, which function counts only the numbers?
The COUNT function counts only the cells with numbers, ignoring text and empty cells.
Click to reveal answer
intermediate
Can the COUNTA function count cells with formulas that return empty strings?
Yes, COUNTA counts cells with formulas even if they return empty strings (""), because the cell is not truly empty.
Click to reveal answer
Which function counts only numeric values in a range?
✗ Incorrect
COUNT counts only numeric values, ignoring text and empty cells.
What will =COUNTA(A1:A5) return if A1=5, A2="Hello", A3=empty, A4=TRUE, A5="" (empty string)?
✗ Incorrect
COUNTA counts all non-empty cells including text, numbers, TRUE, and empty strings returned by formulas.
If you want to count all cells that are not empty, which function should you use?
✗ Incorrect
COUNTA counts all non-empty cells regardless of content type.
What does the COUNT function ignore?
✗ Incorrect
COUNT ignores text and empty cells; it counts only numbers.
Which function would count cells with formulas that return empty strings as non-empty?
✗ Incorrect
COUNTA counts cells with formulas returning empty strings because they are not truly empty.
Explain how COUNT and COUNTA functions differ in counting cells in a spreadsheet.
Think about what types of cell contents each function counts.
You got /4 concepts.
Describe a real-life example where you would use COUNTA instead of COUNT.
Consider when you want to count any filled cell, not just numbers.
You got /4 concepts.