iserr
Test for any error except #N/A.
Syntax
Section titled “Syntax”v = iserr(value)Description
Section titled “Description”Like iserror but excludes #N/A. Useful for catching computational errors while letting #N/A (typically meaning “data not available”) propagate.
Examples
Section titled “Examples”iserr(1/0) % 1iserr(NA()) % 0