Nil in Place Off #N/A

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

Guest

Hello from Steve Dee

Is it possible please to have Nil in place off #N/A

=VLOOKUP(A127,'Wellington Total''s'!$A$2:$C$1991,2,FALSE)

Thankyou.
 
Place the vlookup within a test for NA:
=if(isna(VLOOKUP(A127,'Wellington
Total''s'!$A$2:$C$1991,2,FALSE)),"",VLOOKUP(A127,'Wellington
Total''s'!$A$2:$C$1991,2,FALSE))
You could replace "" with any other sort of 'default' you like.
 

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