Conditional dates formulas

G

Guest

I have been using this formula to determine if a task is
overdue.
=IF(D7-TODAY()*3,"Overdue","")

I would like to add a condition to that, if the task is
due in 3 days, write "Due in 3 days", instead
of "Overdue".
How do I do this?
 
B

Bob Phillips

=IF(D7=TODAY()+3,"Due in 3 days",IF(D7<TODAY(),"Overdue",""))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
G

Guest

Thanks! It worked.
-----Original Message-----
=IF(D7=TODAY()+3,"Due in 3 days",IF(D7<TODAY (),"Overdue",""))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the 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

Top