I want to conditionally format an entire column after 1 year from

  • Thread starter Thread starter JEA
  • Start date Start date
J

JEA

I am trying to conditionally format a column to have the text (which are
dates) to turn red/bold a year from the date in the cell. I know how to
bold/red, I just can't figure out how to set it for a year from the date in
each particular cell. The dates are different in each cell. Thank you!
 
1 year from...which date/cell? Assuming you mean today, your CF formula
would be:

=B2>TODAY()+365

If its a particular cell you're comparing, make it:
=B2>$A$1+365
 
Back
Top