
Originally Posted by
jayajaya_4
Use Vlookup function within =IFERROR(VLOOKUP(1,2,1,FALSE),”0″). This will return ‘0’. or
Use IsNA as =ISNA(VLOOKUP(1,2,1,FALSE)). This will return “TRUE”.
To get rid of this use “=ISERROR(1/0)”. This will return “TRUE” in case of any problem with calculation.
Or use =IFERROR(1/0,”Error Occurred in Calculation”)
This is one of the frequent errors you see while*using vlookup formula. The N/A error is shown when some data is missing, or inappropriate arguments are passed to the lookup functions (vlookup, hlookup etc.) of if the list is not sorted and you are trying to lookup using sort option. You can also generate a #N/A error by writing =NA() in a cell.
How to fix #N/A error?
Make sure you wrap the lookup functions with some error handling mechanism. For eg. if you are not sure the value you are looking is available, you can write something like =if(iserror(vlookup(…)),”not found”,vlookup(…)). This will print “not found” whenever the vlookup returns any error (including #N/A)
Bookmarks