View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom Peo Sjoblom is offline
external usenet poster
 
Posts: 3,268
Default How can I have a false Vlookup give a blank instead of #N/A?

=IF(ISNA(vlookup_formula),"",vlookup_formula)


--


Regards,


Peo Sjoblom



"TQCON" wrote in message
...
I'm looking up values in a column using the VLOOKUP with the FALSE
included
so that if the lookup item isn't present, I purposely get a "#N/A". Can I
nest an "IF" statement so that if the vlookup returns a "#N/A", I want it
to
appear blank instead of getting the "#N/A"? Thanks.