Conditional Formatting

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

Guest

I need to know how to make a block turn RED if the date exceeds a year. Thanks!
 
Do you mean if the data exceeds one year from today? If
so, select the target cell, go to Format > Conditional
Formatting, choose Formula Is, and put:

=$A$1<DATE(YEAR(TODAY())-1,MONTH(TODAY()),DAY(TODAY()))

Change $A$1 to your actual cell reference.

HTH
Jason
Atlanta, GA
 
Try this in - Conditional Format - Formula Is:

=DATE(YEAR(E1)+1,MONTH(E1),DAY(E1))<=TODAY()

If E1 was your cell to format.
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


I need to know how to make a block turn RED if the date exceeds a year.
Thanks!
 
Thanks all,

I used =NOW()-365 and cell is less than or equal to that helped me achieve
what I wanted. Found it in another post.
 

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