N/A Question

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
 
L

Luke M

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),"")
 
G

Gord Dibben

=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

Multiple Offset/Match formula returns "#N/A" 2
Formula returns #N/A 1
#N/A 5
Index & Match 1
Excel Import Comments 3
Vlookup - N/A 4
MATCH returning #N/A 3
Adding if error to a formula 6

Top