Syntax
| Parameter | Description |
|---|---|
| value | Parameter of the ISBLANK function. |
Examples
Check for missing data
=ISBLANK(A1)
Conditional default
=IF(ISBLANK(B2), "N/A", B2)
Count empty cells
=COUNTIF(A1:A100, "")
Common Errors
ISBLANK does not produce errors — it always returns TRUE or FALSE, even for error values in the cell (which return FALSE).
Tips
A cell containing ="" (empty string formula) is NOT blank. ISBLANK returns FALSE. If you need to detect both, use A1="" which catches empty strings and blanks.
=AND(NOT(ISBLANK(A1)), NOT(ISBLANK(B1))) checks that both required fields are filled in.
Use =ISBLANK(A1) as a conditional formatting rule to highlight empty cells in a data entry form — makes missing data immediately visible.
Try ISBLANK in Viztab
Import your data and use ISBLANK with 370+ other formulas. No signup required.
Open Viztab