ISBLANK checks whether a cell is genuinely empty, returning TRUE only if there is truly nothing in it.
ISBLANK returns TRUE if a cell is completely empty, and FALSE if it contains anything at all — including a space, a zero, or an empty-looking formula result.
This distinction matters because a cell that "looks" empty (like one containing a formula that returns "") is not actually blank as far as ISBLANK is concerned.
=ISBLANK(value)| Argument | Description |
|---|---|
| value required | The cell to test. |
=ISBLANK(A2)Returns TRUE only if A2 has never had anything typed into it.
=ISBLANK(A2)If A2 contains the formula =IF(B2="","",B2), ISBLANK returns FALSE even when it displays nothing — the cell contains a formula, not true emptiness.
=IF(ISBLANK(A2),"Missing","Complete")Useful for data validation, flagging rows where a required field was never filled in.
A formula result of "" looks empty but is not — use =A2="" instead if you want to catch both true blanks and empty-string results.
ExcelPro has hands-on ISBLANK exercises built into real job scenarios — free to start.
Try ISBLANK exercises →