Excel true date formulas

  • Thread starter Thread starter spyder
  • Start date Start date
S

spyder

I need to know how I can enter a date , 02/28/06 in one cell and then i
another cell tell me if that date is true.
It is to be used when there is a list of contracts, in one cell th
date of expiry, and them another cell if that date has come to pass o
not happened yet(expired, current)
Will the "if" function work with real date
 
how about
=if(a1>b1,"Epired","")

for this example:
place expiry date in B1
a1 have =today()
 
yes. something like

=IF(A1<TODAY(),"passed",IF(A1>TODAY(),"future",""))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 

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