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.
 
Back
Top