ISERR Function
The ISERR function in Google Sheets is used to check if a value is an error, excluding the #N/A error.
Syntax
ISERR(value)
value
: The value or expression you want to test. This is a required parameter.
Example
- Basic Error Check
Check if a value returns an error, excluding #N/A:
=ISERR(1/0)
This will return TRUE because dividing by zero results in an error.
Notes
- The function returns TRUE for all errors except for #N/A.
- Useful in conjunction with error handling functions like IFERROR.