remove "#N/A" as a return value

T

TK

Hi:
=VLOOKUP(K46,$A$1:$E$10,5,0)
returns #N/A if k46 is empty

I tried various if statements in the following format.
to return an empty cell without success.

=IF(k46 = "","",=VLOOKUP(K46,$A$1:$E$10,5,0))

Any help will be greatly appreciated.

Thanks
TK
 
N

Nitin Harkawat

Use
=IF(ISNA(VLOOKUP(K46,$A$1:$E$10,5,0)),"",VLOOKUP(K46,$A$1:$E$10,5,0))
 

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

Similar Threads


Top