VLOOKUP and #N/A

R

Rj

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
 
F

francis

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top