Conditional formatting on Date

R

Rick1

I have a cell with a training date. I would like to format the cell to
change color when actual date exceeds training date by one year.
 
R

Rick Rothstein

Select "Formula Is" and use this conditional formula...

=DATEDIF(A1,NOW(),"y")>0
 
R

Rick Rothstein

I used A1 in my formula, but you should use your actual cell address
instead.
 
Top