excel 2003 date notification formula

R

rwpatter1

I need a formula that will return a notification in a cell that is 1 year
from the selected start date.

I have an employee due a review 1 year from his start date. lets say it is
01/02/09
on 01/02/10 I need an adjacent cell to alert me with the word "DUE"
otherwise it should say "current" it also can be color coded as in
conditional formating
 
J

JBeaucaire

Simplest of all:

=IF(TODAY()>=A1+365,"DUE","CURRENT")

But of course that would be off by a day on leap years. If you don't really
mind that, you're good.
 
B

Billy Liddel

Or you could try:
=IF(TODAY()<DATE(YEAR(A2)+1,MONTH(A2),DAY(A2)),"Current","Due")

Conditional formatting, Cell Value, Is Equal to, type =Due

Regards
Peter Atherton
 

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