IFERROR
Conditional Functions
Basic Description
The Excel Iferror function tests if an initial supplied value (or expression) returns an error, and if so, returns a second supplied argument; Otherwise the function returns the initial tested value.
The Iferror function is new to Excel 2007, so is not available in earlier versions of MS Excel
The syntax of the function is:
Where the arguments are as follows :
value | - | The initial value or expression that should be tested |
value_if_error | - | Value or expression to be returned if the initial value argument returns an error. |
Iferror Function Example 1
The following spreadsheet shows two simple examples of the Excel Iferror function.
Formulas:
|
|||||||||||||||
Results:
|
In the first example (in cell C1), the initial value, A1/B1 returns the value 0.5. This is not an error and so this value is returned by the Iferror function.
In the second example (in cell C2), the initial value, A2/B2 returns the DIV/0! error. Therefore, the Iferror function returns the value_if_error, which is 0.
Iferror and Vlookup - Improvement Compared to Excel 2003
The Excel Iferror function was introduced in Excel 2007.
Previously, in Excel 2003, many users of the Excel Vlookup function would combine this with the If function and the Iserror function, to test for an error, and return an appropriate result. This is shown in the following formula:
the above formula checks if the Vlookup function returns an error, and if so, returns the text "not found". Otherwise the value returned by the Vlookup is used.
Although this formula is long and inefficient (as it requires 2 seperate calls to the Vlookup function), it is useful because it helps to keep your spreadsheet cells tidy and free from error messages.
In Excel 2007 or 2010, the above action can be performed much more efficiently and neatly, by using the Iferror function. The new formula is written as:
This is illustrated in example 2 below.
Iferror Function Example 2
The following spreadsheet shows two examples of the Excel Iferror function. The formulas are shown in the top spreadsheet and the results are shown in the spreadsheet below.
Formulas:
|
|||||||||||||||||||||||||||||||||||
Results:
|