Getting rid of n/a in Vlookup

P

Pinda

In a vlookup formula, how can you get excel to enter a
blank cell rather than #n/a, when the reference is not
contained within the range?

Thanks
 
P

Paul

Pinda said:
In a vlookup formula, how can you get excel to enter a
blank cell rather than #n/a, when the reference is not
contained within the range?

Thanks

=IF(ISNA(yourlookupformula),"",yourlookupformula)
 
N

ND

Try using it in conjunction with an "if" statement...

For example:

=if(isna(vlookup("cell","range","return",false)),"",vlookup
("cell","range","return",false))
 

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