Complete the formula to count only numbers in the range A1:A10.
=COUNT([1])The COUNT function counts only numeric values in the specified range. Here, A1:A10 is the correct range to count numbers.
Complete the formula to count all non-empty cells in the range B1:B15.
=COUNTA([1])The COUNTA function counts all non-empty cells, including numbers, text, and other data types. The range B1:B15 covers all cells to count.
Fix the error in the formula to count numbers in C1:C20.
=COUNT([1])The correct range syntax uses a colon : between start and end cells. Semicolons or dashes are invalid here.
Fill both blanks to create a formula that counts non-empty cells in D1:D12 and ignores empty cells.
=COUNTA([1]) - COUNTBLANK([2])
Both COUNTA and COUNTBLANK must use the same range D1:D12 to correctly count non-empty cells minus blanks.
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.
=COUNT([1]) + COUNTA([2]) - COUNTBLANK([3])
The formula counts numbers in E1:E20, counts all non-empty cells in F1:F20, and subtracts empty cells in F1:F20 to get accurate counts.