This appears up the value of C1 in column A and returns the end result that's within the identical row of column B. However, if the cost of C1 isn't located in column A, the VLOOKUP function will return the #N/A error. But, because of the IFERROR function, the cellular may be clean alternatively (because of the empty quotes).
I actually have usually determined that clean cells looks plenty greater expert that having errors throughout your spreadsheet. In addition to being useful while the usage of the VLOOKUP function, this approach is also quite beneficial whilst the use of SEARCH, FIND, or truly every other function that has a knack for turning up mistakes.
Unfortunately, the IFERROR characteristic is simplest to be had for Excel 2007 and up. But, here's a way to work around it for people who are still using Excel 2003. In the previous example you will as an alternative use:
=IF(ISERROR(VLOOKUP(C1,A:B,2,FALSE)),"",VLOOKUP(C1,A:B,2,FALSE))
It's messier to examine due to the fact that you are required to enter your original characteristic two times, but it'll accomplish the precise identical component in the long run.