SheetRocks
Documentation/Formulas/ISERROR

ISERROR

Returns TRUE if the value is any error value

Syntax

ISERROR(value)

Arguments

Argument Description Required
value The value you want to test Required

Examples

Check if division by zero is error

=ISERROR(10/0)
Result ⇒ true

Check if valid calculation is error

=ISERROR(10/2)
Result ⇒ false

Check if text is error

=ISERROR("Hello")
Result ⇒ false

Related Functions

Other Logical functions:


← Back to Formula Reference