
Count how many cells are blank. Useful when you want to measure missing data or incomplete entries.
COUNTBLANK returns how many cells in a range are blank. It is a simple way to measure what is missing instead of what is present.
This can be more useful than it sounds. If a sheet tracks responses, statuses, or required fields, the blank count tells you how many items still need work before the data is complete.
COUNTBLANK is useful when missingness itself is the thing being measured. It helps the workbook track incomplete forms, missing records, or unfilled fields, which is often just as important as counting the values that are already present.
Returns how many cells in a selected range are blank.
Returns the number of blank cells in the range you choose.
=COUNTBLANK(range)
This function takes one range and checks it for blank cells.
| Function | What it counts | Use it when |
|---|---|---|
COUNTBLANK |
Blank cells | You want to count missing entries |
COUNTA |
Non-empty cells | You want to count what has been filled in |
COUNT |
Numeric cells | You want only numeric entries |
COUNTIF |
Cells matching a condition | You want a filtered count based on a rule |
COUNTBLANK is most useful when blank cells have meaning. In a form, a blank cell can mean no response. In a project sheet, it can mean unfinished work. In a customer table, it can mean missing contact details. Instead of scanning down the sheet yourself, you can let Excel count those gaps for you.
Microsoft notes an important detail here. Cells with formulas that return "" are counted as blank by COUNTBLANK. Cells containing zero are not blank. A cell that contains a space character also is not blank, even if it looks empty on the screen. That is often the reason a blank count looks lower than expected.
Because of that rule, COUNTBLANK is also useful in cleanup work. If your dataset has hidden spaces or values that only look empty, the function can help you spot the difference between a truly blank cell and a cell that still contains something.
This works well for sign-up lists, attendance columns, and simple forms where blanks mean no answer yet.
This is a useful starting example because it shows the main practical meaning of COUNTBLANK: measure what is still missing rather than what is already filled.
=COUNTBLANK(B1:B10) // Returns how many cells in the range are blank.
Count the blank cells in the response list.
A short count like this is useful when you only want to see how many rows still need an update.
This makes the example easy to connect to daily workflow sheets. A small blank count can quickly show whether a section is finished or still incomplete.
=COUNTBLANK(A1:A3) // Returns the number of blank cells in the range.
Count the blanks in the short status range.
Cells with spaces behave differently from cells that are actually blank, so this kind of check is useful during cleanup.
This helps explain why blank counts can feel confusing at first. A cell that looks empty is not always truly blank in Excel.
=COUNTBLANK(C1:C10) // Counts true blanks in the range.
Count the true empty cells in the cleanup range.
If you want to know how much data is still missing before a report goes out, COUNTBLANK gives you a quick answer.
This is practical for readiness checks because it turns missing information into one simple number the reviewer can track.
=COUNTBLANK(B1:B10) // Returns the number of missing entries in the range.
Find how many records are still missing.
COUNTBLANK is useful when missing data matters more than filled data. This lesson showed that instead of counting what is there, the function helps you measure what is still empty in a list, form, or worksheet range.
The most important beginner detail is that not every cell that looks empty is truly blank. A formula that returns "" counts as blank here, but a hidden space does not. That difference is often the reason a blank count seems confusing at first.
"" is treated as blank.COUNTA if you want the opposite view and need to count filled cells.Tell your friends about this post