Recall & Review
beginner
What does the COUNT function do in Excel?
The COUNT function counts how many cells contain numbers in a range. 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, and errors.
Click to reveal answer
beginner
How would you count all non-empty cells in the range A1:A10?
Use the formula =COUNTA(A1:A10). It counts all cells that are not empty.
Click to reveal answer
beginner
What will =COUNT(A1:A5) return if A1=5, A2="text", A3=10, A4=empty, A5=3?
It will return 3 because only A1, A3, and A5 contain numbers.
Click to reveal answer
intermediate
Can the COUNTA function count cells with formulas that return empty strings ("")?
No, cells with formulas returning empty strings are considered empty by COUNTA and are not counted.
Click to reveal answer
Which function counts only numeric values in a range?
✗ Incorrect
COUNT counts only cells with numbers, ignoring text and empty cells.
What does COUNTA count in a range?
✗ Incorrect
COUNTA counts all cells that are not empty, including numbers, text, and errors.
If a cell contains a formula that returns "", will COUNTA count it?
✗ Incorrect
COUNTA treats cells with formulas returning empty strings as empty and does not count them.
Which formula counts how many cells in B1:B10 contain any data (numbers or text)?
✗ Incorrect
COUNTA counts all non-empty cells, including text and numbers.
What will =COUNT(A1:A3) return if A1=5, A2="hello", A3=empty?
✗ Incorrect
COUNT counts only numeric cells, so only A1 is counted.
Explain how COUNT and COUNTA functions differ and give an example of when to use each.
Think about counting numbers versus counting any filled cells.
You got /4 concepts.
Describe what happens when COUNTA is used on a range containing empty cells, text, numbers, and formulas returning empty strings.
Consider what COUNTA treats as non-empty.
You got /3 concepts.