Taking off or hiding #N/A

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

This is my formula :
=VLOOKUP(C,SHEET2!$A:$B,2,FALSE)
I know there is a way to hide or take the "#N/A" off
that appared in " D" when" C" is empty.
Don't remenber how. Thanks for your help.
 
As written, your formula does not provide a lookup value reference cell or you
have missed the quotes around "C" if that is the lookup value
=VLOOKUP(C,SHEET2!$A:$B,2,FALSE)

Maybe something like this

=IF(ISNA(VLOOKUP(C1,Sheet2!$A:$B,2,FALSE)),"",VLOOKUP(C1,Sheet2!$A:$B,2,FALSE))


Gord Dibben MS Excel MVP
 
Thanks, Gord Dibben, but my issue came with the formula itself and the
puntuation.
I got it! Thanks also again for the original formula Teeth mama.
 

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

Hide the contents of cell 3
Hiding VLookup #N/A 1
#N/A 5
#N/A 4
#N/A 5
Do not display "#N/A" result 1
removing na 3
vlookup resulting in #N/A 2

Back
Top