N/A Question

  • Thread starter Thread starter Jeremy
  • Start date Start date
J

Jeremy

I am using
=OFFSET(MasterInventoryList!$A$1,MATCH($A4,MasterInventoryList!$A$1:$A$425,0)-1,1)
as a formula and if no data is entered yet the cell shows N/A. How do I have
the N/A not show or hide?


Thank you
Jeremy
 
This contains an error check method:

=IF(ISNUMBER(MATCH($A4,MasterInventoryList!$A$1:$A$425,0)),OFFSET(MasterInventoryList!$A$1,MATCH($A4,MasterInventoryList!$A$1:$A$425,0)-1,1),"")
 
=IF(ISNA(OFFSET(MasterInventoryList!$A$1,MATCH($A4,MasterInventoryList!$A$1:$A$425,0)-1,1)),"",OFFSET(MasterInventoryList!$A$1,MATCH($A4,MasterInventoryList!$A$1:$A$425,0)-1,1))


Gord Dibben MS Excel MVP
 

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

Formula returns #N/A 1
Multiple Offset/Match formula returns "#N/A" 2
#N/A 5
Mandatory and optional formula 5
Index & Match 1
#N/A 4
Excel Import Comments 3
Formula to return a formula 1

Back
Top