Conditional formatting of past-date rows

test_man2

New Member
Joined
Aug 28, 2007
Messages
35
Office Version
  1. 365
Platform
  1. Windows
Greetings!
I have a spreadsheet with three date columns -
Released, Implemented, Activated
The Released date is 13 days before the Implemented date.
The Implemented date is six days before the Activated date
The Activated date is a hard-coded date of when this table began and then 14 days added to it for the next row in that column.

Formulas look like this: (A) Released: =B2-13; (B) Implemented: =C2-6; (C) Activated: row 2 is 5/20/2022, then subsequent rows are =C2+14, C3+14, etc.

Since the rows carry down to the end of the year (A:19 = 12/25), I'd like to conditionally format the rows in column A, B, and C to grey highlight where today's date has passed the date in column A to make it easier to find the most current date row that hasn't passed and help me see what has been activated. Currently, I have the conditional format as this: Formula: =A2 < TODAY() and it is applied to =$A$2:$C$19.
The weakness in this is that column A will be highlighted sometimes before column C.
How can I set the conditional formatting to highlight all three cells in that row but not highlight the next row until that date has passed? As you can see, the next A: date will have passed before C: date has.

Cell Formulas
RangeFormula
A2:A19A2=B2-13
B2:B19B2=C2-6
C3:C19C3=C2+14
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A2:C19Expression=A2<TODAY()textNO
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
You need to anchor the column like
Excel Formula:
=$A2<TODAY()
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,813
Messages
6,121,705
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top