Excel COUNT Empty Cells

This guide treats “excel count empty cells” the way busy spreadsheet users actually want it: answer first, a live tool to prove it on your own data, then the reasoning. It is written for Excel but calls out every place Google Sheets differs, and the platform toggle at the top switches all shortcuts between Windows and Mac so nothing here assumes the keyboard you are not on.

Exact answer

In Excel: use =COUNTBLANK(range) — it counts empty cells, and also counts cells whose formula returns an empty string.

Syntax

=COUNTBLANK(range)

Arguments

ArgumentDescription
rangerequiredThe range to check for empty cells.

Related functions

COUNTACOUNTCOUNTIF
ƒxCell CounterLive

Operators >, >=, <, <=, <> and the * / ? wildcards all work, exactly as in Excel. Matching is case-insensitive.

Not blank (COUNTA)
6
Not blank (COUNTA)
6
Numbers (COUNT)
3
Text cells
3
Blank (COUNTBLANK)
2

8 cells read

=COUNTA(A2:A9)

COUNT only counts numbers; COUNTA counts anything that is not blank. A number stored as text is text to both.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

COUNTBLANK counts the empty cells in a range. Its defining quirk is the mirror image of COUNTA's: a formula returning "" is counted as blank here, even though the cell is not truly empty. That makes the two functions disagree about the same range, which is confusing until you know it — and useful once you do, because the difference between them isolates exactly the cells that only look empty. Its everyday role is completeness checking: how many required fields are still unfilled. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “excel count empty cells”. Start on a copy or a tiny sample, keep the affected blanks visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a layout choice that keeps the sheet readable and sortable, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

A required-field column C2:C200: =COUNTBLANK(C2:C200) returns how many entries are still missing, and =COUNTBLANK(C2:C200)/ROWS(C2:C200) turns that into a completeness percentage. On a range of =IF(...,"",...) formulas, COUNTBLANK counts the empty-string results while COUNTA does not — the gap identifies them precisely. COUNTBLANK is the completeness check for any data-entry sheet, and its disagreement with COUNTA is a precise diagnostic rather than a bug. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. Treat “excel count empty cells” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.

Common mistakes

  • Expecting it to ignore formula-produced empty strings — it counts them as blank.
  • Passing several ranges; COUNTBLANK takes exactly one.
  • Treating a cell containing a space as blank; it is not, and COUNTBLANK will not count it.

Frequently asked questions

Does COUNTBLANK count formulas that return ""?

Yes, it treats them as blank — the opposite of COUNTA, which counts them as filled.

How do I count blanks across several ranges?

Add several COUNTBLANK calls together; the function itself takes only one range.

Why do COUNTA and COUNTBLANK not add up to the range size?

Because cells holding formulas that return "" are counted by both. The overlap is exactly those cells.