View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Francis Francis is offline
external usenet poster
 
Posts: 175
Default VLOOKUP and #N/A

try this to ignore #NA and return a blank instead

=IF(ISNA(VLOOKUP(C1,$A$1:$B$3,2,0)),"",VLOOKUP(C1, $A$1:$B$3,2,0))
--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked


Thank You

cheers, francis










"Rj" wrote:

How do I do a VLOOKUP and return nothing instead of #N/A?
For instance, if I have D1= "=VLOOKUP(C1,$A$1:$B$3,2,FALSE)"
Instead of #N/A I would rather get nothing.

A B C D
1 5 Red 3 #N/A
2 10 Blue 5 Red
3 15 Green 15 Green
4