Excel ISBLANK Function

There are two ways to “excel isblank function”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above with a tool to test it; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

In Excel: use =ISBLANK(value) — it returns TRUE only for a truly empty cell, and FALSE for a formula that returns an empty string.

Syntax

=ISBLANK(value)

Arguments

ArgumentDescription
valuerequiredThe cell to test. Returns TRUE only for a genuinely empty cell.

Related functions

COUNTBLANKIFISNUMBER
ƒ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

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

ISBLANK tests whether a cell is genuinely empty. The distinction that trips everyone is the empty string: a cell holding =IF(A2="","",A2) looks blank but contains a formula, so ISBLANK returns FALSE for it. That is technically correct and practically infuriating, which is why the more robust emptiness test in most real workbooks is =A2="" — that treats both a truly empty cell and an empty-string result as blank. Use ISBLANK when the difference genuinely matters, such as distinguishing "not entered" from "calculated to nothing" on a form. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. For “excel isblank function”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected blanks change, and only then apply the same setup to the full sheet. 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. That is what makes a calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

Flagging unfilled required fields: =IF(ISBLANK(C2), "Missing", "OK") down a form column. On a column of =IF(...,"",...) formulas the same test returns "OK" everywhere, because those cells are not empty — switch to =IF(C2="", "Missing", "OK") to catch both cases. ISBLANK is the difference between "nobody filled this in" and "this calculated to nothing", which is exactly what a form validation needs to distinguish. 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. Here is the takeaway for “excel isblank function”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

Common mistakes

  • Expecting TRUE from a formula that returns "" — the cell contains a formula and is not blank.
  • Using ISBLANK on a cell containing a single space, which is also not blank.
  • Reaching for ISBLANK when =A2="" is the more forgiving test the situation actually needs.

Frequently asked questions

Why does ISBLANK return FALSE on an empty-looking cell?

The cell holds a formula that returns an empty string. It is not empty, so ISBLANK is correct — use =A2="" to treat both as blank.

How do I check if a cell is empty?

=ISBLANK(A2) for strict emptiness, or =A2="" for the looser test that also catches empty-string results.

How do I count empty cells?

COUNTBLANK, which — unlike ISBLANK — does count empty-string formula results as blank.