Complete the formula to count only numbers in the range A1:A10.
= [1](A1:A10)The COUNT function counts only numeric values in a range.
Complete the formula to count all non-empty cells in the range B2:B20.
= [1](B2:B20)The COUNTA function counts all cells that are not empty, including text and numbers.
Fix the error in the formula to count numbers in C1:C15.
= COUNT([1])Ranges in formulas use a colon : to specify start and end cells, like C1:C15.
Fill both blanks to count all non-empty cells in D1:D10 and E1:E10 separately.
= [1](D1:D10) + [2](E1:E10)
Use COUNTA to count all non-empty cells in both ranges and add the results.
Fill all three blanks to count numbers in F1:F10, count non-empty in G1:G10, and subtract empty cells in H1:H10.
= [1](F1:F10) + [2](G1:G10) - [3](H1:H10)
COUNT counts numbers, COUNTA counts all non-empty cells, and COUNTBLANK counts empty cells.