ISBLANK

The ISBLANK function returns the boolean value TRUE if the specified cell is empty and the boolean value FALSE otherwise.

ISBLANK(cell)

cell: A cell reference to a single table cell. The referenced cell can contain any value or be empty. If cell refers to more than one cell, ISBLANK will return the boolean value FALSE even if all cells are blank.

Notes

Examples

If the table cell A1 is empty and cell B2 is equal to 100:

=ISBLANK(A1) returns TRUE.

=ISBLANK(B2) returns FALSE.

See also
IFERROR
ISERROR