Excel ISError Function

This post will guide you how to use Excel ISERROR function with syntax and examples in Microsoft excel.

Description

The Excel ISERROR function used to check for any error type that excel generates and it returns TRUE for any error type, such as: #N/A, #VALUE!,#REF!,#DIV0!, #NAME?, etc. and the ISERR function also can be checked for error values except #N/A error, it returns TRUE while the error is #N/A.

The ISERROR function is a build-in function in Microsoft Excel and it is categorized as an Information Function.

The ISERROR function is available in Excel 2016, Excel 2013, Excel 2010, Excel 2007, Excel 2003, Excel XP, Excel 2000, Excel 2011 for Mac.

Syntax

The syntax of the ISERROR function is as below:

= ISERROR (value)

Where the ISERROR function argument is:

  • Value -This is a required argument. The value that you want to test.

Example

The below examples will show you how to use Excel ISERROR Function to test if the value is any of error values. If so, return TRUE.

#1 using the following formula to check #N/A error.

= ISERROR (B1)

excel iserror function example1

#2 using the ISERROR function to check Cell B1 contains the value “excel”, enter the below formula in Cell C1 formula box:

=ISERROR(B1)

excel iserror function example1

As it is not an error type, so returns FALSE.


Related Functions

  • Excel ISNUMBER Function
    The Excel ISNUMBER function returns TRUE if the value in a cell is a numeric value, otherwise it will return FALSE.The syntax of the ISNUMBER function is as below:=ISNUMBER (value)
  • Excel ISERR Function
    The Excel ISERR function returns TRUE if the value is any error value except #N/A.The syntax of the ISERR function is as below:= ISERR (value)…
  • Excel ISBlank Function
    The Excel ISBLANK function returns TRUE if the value is blank or null.The syntax of the ISBLANK function is as below:=ISBLANK (value)…
  • Excel ISNA Function
    The Excel ISNA function used to check if a cell contains the #N/A error, if so, returns TRUE; otherwise, the ISNA function returns FALSE. The syntax of the ISNA function is as below:=ISNA(value)…
  • Excel ISTEXT Function
    The Excel ISTEXT function used to check if a value is text. If so, returns TRUE; if the text is not text, the function will return FALSE. The syntax of the ISTEXT function is as below:=ISTEXT(value)…
  • Excel ISNONTEXT Function
    The Excel ISNONTEXT function used to check if a value is text. If so, returns FALSE; if the text is not text, the function will return TRUE. The syntax of the ISNONTEXT function is as below:=ISNONTEXT (value)…
  • Excel ISREF Function
    The Excel ISREF function used to check if a value is a valid reference. If so, returns TRUE; if the value is not a reference, the function will return FALSE. The syntax of the ISREF function is as below:=ISREF(value)…

Leave a Reply