COUNT vs COUNTA vs COUNTBLANK: Which to Use
Your responses column mixes numbers, text like "pending", and empty cells — and you need to know how many amounts came in, how many rows have anything at all, and how many are still missing.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
The three functions answer three different questions about the same range. COUNT only tallies cells holding numbers (including dates, which are stored as numbers) — text like "pending" is invisible to it. COUNTA counts every cell with anything in it: numbers, text, even an error value. COUNTBLANK counts the truly empty cells. On a column containing 250, an empty cell, "pending", 180, and another empty cell, they return 2, 3, and 2 respectively — and COUNTA plus COUNTBLANK equals the total rows, a handy sanity check. The classic confusion is running COUNT on a text column, getting 0, and concluding the data vanished; the data is fine, you just asked for numbers.
When to use it
COUNTA for how many survey responses or orders exist, COUNT for how many have a numeric amount, COUNTBLANK to find how many entries are still missing before a deadline.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveDownload the proof sheet (.xlsx)Last reviewed 2026-07-09