Hiding #N/A

  • Thread starter Thread starter jamie85
  • Start date Start date
J

jamie85

Is there a way that i can hide the #N/A that appers in a cell with
lookup when there is no value in it? Thankyou
 
Hi,

Try following ws-function :

=IF(ISNA(your_lookup_function);;your_lookup_function
 
=IF(ISNA(=VLOOKUP(A2,STOCK,2)),"",=VLOOKUP(A2,STOCK,2))

That is what i currently have but it isn't working. Any idea why
Thanks
 
should be like this :

=IF(ISNA(VLOOKUP(A2,STOCK,2)),"",VLOOKUP(A2,STOCK,2))
 

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

Back
Top