With a normal vlookup I can use if iserror to avoid #N/A:
=IF(ISERROR(VLOOKUP(F2,nvl,2,FALSE)),”Not found”,VLOOKUP(F2,nvl,2))
However, when I try to do a left lookup with index and match:
=INDEX(lreturn,MATCH(F3,lcc,0)) and then add if iserror I get a #Value error.
=IF(ISERROR(INDEX(lreturn,MATCH(F3,lcc,0))),”Not Found”),INDEX(lreturn,MATCH(F3,lcc,0))
What am I doing wrong? I use Excel 2003.
Thanks
itconc