0
0
Excelspreadsheet~10 mins

COUNT and COUNTA functions in Excel - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to count only numbers in the range A1:A10.

Excel
=COUNT([1])
Drag options to blanks, or click blank then click option'
AA1:A10, B1:B10
BA1
CCOUNT(A1:A10)
DA1:A10
Attempts:
3 left
💡 Hint
Common Mistakes
Using COUNTA instead of COUNT when only numbers are needed.
Including multiple ranges separated by commas incorrectly.
Putting the function call inside itself.
2fill in blank
medium

Complete the formula to count all non-empty cells in the range B1:B15.

Excel
=COUNTA([1])
Drag options to blanks, or click blank then click option'
ACOUNTA(B1:B15)
BB1:B15
CB1
DB1:B10
Attempts:
3 left
💡 Hint
Common Mistakes
Using COUNT instead of COUNTA when counting text cells.
Specifying a smaller range than needed.
Putting the function call inside itself.
3fill in blank
hard

Fix the error in the formula to count numbers in C1:C20.

Excel
=COUNT([1])
Drag options to blanks, or click blank then click option'
AC1:C20
BC1;C20
CC1-C20
DCOUNT(C1:C20)
Attempts:
3 left
💡 Hint
Common Mistakes
Using semicolon or dash instead of colon in range.
Putting the function call inside itself.
Using a single cell instead of a range.
4fill in blank
hard

Fill both blanks to create a formula that counts non-empty cells in D1:D12 and ignores empty cells.

Excel
=COUNTA([1]) - COUNTBLANK([2])
Drag options to blanks, or click blank then click option'
AD1:D12
BD1:D10
DD1:D15
Attempts:
3 left
💡 Hint
Common Mistakes
Using different ranges for COUNTA and COUNTBLANK.
Using a smaller or larger range than needed.
Confusing COUNTBLANK with COUNT.
5fill in blank
hard

Fill all three blanks to create a formula that counts numbers in E1:E20, counts all non-empty cells in F1:F20, and subtracts empty cells in F1:F20.

Excel
=COUNT([1]) + COUNTA([2]) - COUNTBLANK([3])
Drag options to blanks, or click blank then click option'
AE1:E20
BF1:F20
DE1:E15
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up ranges between E and F columns.
Using incorrect ranges like E1:E15 instead of E1:E20.
Confusing COUNTBLANK with COUNTA.