Uji kesalahan apa pun kecuali #N/A
=ISERR(value)
| Parameter | Deskripsi |
|---|---|
value |
The value to check for any error but #N/A. |
ISERR will return TRUE if A1 contains any error except #N/A:
=ISERR(A1) // TRUE if A1 contains an error
You can use the ISERR function together with the IF function to test for an error and display a custom message, or perform a different calculation if
=IF(ISERR(A1),"custom message")