IfError() Function
IfError() Function The Excel IFERROR function returns a custom result when a formula generates an error , and a standard result when no error is detected. IFERROR is an elegant way to trap and manage errors without using more complicated nested IF statements. Syntax The syntax for the IFERROR function in Microsoft Excel is: =IFERROR( formula, alternate_value ) Parameters or Arguments formula The formula or value that you want to test. value_if_error The alternate value that is returned if the formula results in an error value (#N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME? or #NULL). Otherwise, the function will return the result of the formula if no error occurs. Excel Iferror Function Examples Example 1 The following spreadsheet shows two simple examples of the Excel Iferror function. Formulas: A B C 1 1 2 =IFERROR( A1 / B1, 0 ) 2 1 0 =IFERROR( A2 / B2, 0 ) Results: A B C 1...

Comments
Post a Comment