01/01/1900

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

Guest

I run a daily spreadsheet that shows the date inventory for multiple clients
if we have no inventory for that client the date is replaced with *** at the
bottom i have a formula =MIN(I3:I20,I23:I24) to choose the oldest date within
the cell range. but if there is no inventory and all the cells are *** this
formula spits out 01/01/1900 is there any way to make it show *** as a result
if there are no dates? i have been trying to figure this out for a while but
cant get it. i have tried multiple formulas using the IF command but cant get
it to work. any help anyone can provide would be greatly appreciated. Thank
you
 
=IF(MIN(I3:I20,I23:I24)=0,"***",MIN(I3:I20:I23:I24))

Note also that the date you see returned should be 01/00/1900 NOT 01/01/1900

Dave
 
thank you dave... i have been trying to get that to work for a month. i just
put the formula in and it worked. my mistake is where you put the "0" i was
putting "01/00/1900" and it didn't work. thank you again
 
I'd look for a number anywhere in that range:

=IF(COUNT(I3:I20,I23:I24)=0,"***",MIN(I3:I20:I23:I24))
 

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

Please help! date showing as 1900/01/00 2
00/01/1900 1
01/01/1900 and Time Formatting 4
max value 1
0/01/1900 2
Identify month in a period and run a formula 4
Problem with Date format 2
Excel Vlookup Help 0

Back
Top