ISBLANK Function
Tests whether a cell is truly empty.
Syntax
Parameters
| Parameter | Description | Required |
|---|---|---|
| value | The cell reference to test (typically a single cell). | Required |
Basic Example
Check an empty cell
=ISBLANK(A1)A1 contains nothing, so the function returns TRUE.
Advanced Examples
Example 1: A formula returning "" is NOT blank
A1 holds =IF(B1>0,B1,"").Show the difference between empty and empty-string
=ISBLANK(A1)Example 2: A space is not blank
B2 contains a single space character.Detect text that looks empty
=ISBLANK(B2)How ISBLANK Works
ISBLANK returns TRUE only when the referenced cell contains no value and no formula—not even a formula that returns an empty string. A formula that returns "" is still considered non-blank, as is a single space or any other character.
Important Notes & Limitations
A formula returning "" is not considered blank.
A single space is text, not blank.
Tests one cell; for ranges wrap it in an array function like SUMPRODUCT.
Common Errors & Fixes
Thinks an empty string is blankA formula returned "".Fix: Test with =A1="" or LEN(A1)=0 instead.
#VALUE! with a multi-cell rangeISBLANK expects a single reference.Fix: Wrap it in SUMPRODUCT, e.g. =SUMPRODUCT(--ISBLANK(A1:A10)).
Download Practice File
ISBLANK
isblankPractice ISBLANK with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the ISBLANK function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps