Thursday 20 April 2017

Excel - Microsoft Excel IFERROR Function(excel 2010)

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: 

IFERROR( value, value_if_error ) 


Where the arguments are as follows : 

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: 

IF( ISERROR( VLOOKUP( ... ) ), "not found", VLOOKUP( ... ) ) 

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: 

IFERROR( VLOOKUP( ... ), "not found" ) 

This is illustrated in the example below. 

Iferror Function Examples
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. 

No comments:

Post a Comment