What is IFError?
A common request in the area of functions is
something to simplify error checking.
e.g If user wants to catch the errors in
VLOOKUP and use their own error text opposed to excel error, they can use IF
and ISERROR functions or user can use only IFERROR.
Here are both the examples.
1) In first example we will try to get Name
Value from left grid by using IF and ISERROR.
=IF(ISERROR(VLOOKUP(D5,A$2:B$6,2,FALSE)),"Value is not Availble in Source Table",VLOOKUP(D5,A5:B9,2,FALSE))
No comments:
Post a Comment