How to Use ISBLANK in Excel

“use isblank in excel” comes up constantly, so this page leads with the exact answer, gives you a tool to try it on your own numbers, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

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

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. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “use isblank in excel”. 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 workflow that saves repeating the same clicks every week, but the practical win is that someone else can open the file and understand what happened without asking you.

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. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

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. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. If you take one thing from this page on “use isblank in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

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.