SheetRocks
Documentation/Formulas/ISBLANK

ISBLANK

Returns true if the value is blank, empty, or null; otherwise returns false.

Syntax

ISBLANK(value)

Arguments

Argument Description Required
value The value to check if it is blank or empty. Required

Examples

Check if empty text is blank

=ISBLANK("")
Result ⇒ true

Check if empty value is blank

=ISBLANK(A1)
Result ⇒ true
A B
1 A1

Check if text with content is blank

=ISBLANK("Hello")
Result ⇒ false

Check if number zero is blank

=ISBLANK(0)
Result ⇒ false

Related Functions

Other Logical functions:


← Back to Formula Reference