why am i encountering result N#A when doing the VLOOKUP function

S

Simon Lloyd

it's because the lookup value cannot be found, If you are only worried
about N/A then use this ISNA function like this:
=IF(ISNA(VLOOKUP(A1,A2:C10,2,FALSE)),"None",VLOOKUP(A1,A2:C10,2,FALSE))
You can change ISNA for ISERROR to handle all errors.


--
Simon Lloyd

Regards,
Simon Lloyd
'The Code Cage' (http://www.thecodecage.com)
 
Top