Checking a second lookup condition

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

Guest

=IF(A9="","",'DOWNLOAD WO SHORTAGE LIST'!D9)


This formula looks in Cell A9 for a works order #
If it is blank it will return blank
Else go to worksheet 'DOWNLOAD WO SHORTAGE LIST'
Pick up the date in cell D9

My question: How do I expand this statement to include
IF D9 in 'DOWNLOAD WO SHORTAGE LIST' has no date then Blank else date.

Presently it returns the excel default 01/01/1900
 
=IF(OR(A1="",NOT(ISNUMBER('DOWNLOAD WO SHORTAGE LIST'!D9))),"",'DOWNLOAD WO
SHORTAGE LIST'!D9
 
Another suggestion is a custom number format of

mm/dd/yyyy;;

the actual cell value would still be 0 (or 1/0/1900), but would not be shown
 
Nice and simple. Appreciate your help.

JMB said:
Another suggestion is a custom number format of

mm/dd/yyyy;;

the actual cell value would still be 0 (or 1/0/1900), but would not be shown
 

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