Skip to main content
๐Ÿ“Œ More functions: see the Formula function reference.

1 Basics

ISBLANK is a common spreadsheet function (Excel, Google Sheets) โ€” checks if a cell is empty. Returns TRUE when the cell is empty; FALSE when it contains anything (including empty strings, formula results, etc.).

Syntax

formula
ISBLANK(value)
  • value: the cell or expression to check.

Examples

Example 1: empty check

[Field 1] in the first record has no content.
formula
=ISBLANK([Field 1])
Result: TRUE

Example 2: cell with text

[Field 1] in the first record contains โ€œHelloโ€.
formula
=ISBLANK([Field 1])
Result: FALSE