ISERR
Checks whether a value is an error other than #N/A, and returns - true or - false.
Syntax
expression.ISERR(arg1);
expression - A variable that represents a ApiWorksheetFunction class.
Parameters
| Name | Required/Optional | Data type | Default | Description |
|---|---|---|---|---|
| arg1 | Required | number | string | boolean | ApiRange | ApiName | The value to test. The value can be an empty cell, error, logical value, text, number, range, or range name. |
Returns
boolean
Example
Check if a value is an error other than N/A in a spreadsheet.
// How do I detect if a cell contains an error in a spreadsheet?
// Identify errors in cells while excluding N/A values in a spreadsheet.
const worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
worksheet.GetRange("B3").SetValue("45")
let result = func.ISERROR("B3");
worksheet.GetRange("C3").SetValue(result)