If a cell has a certain value after certain date, color the row

Solved/Closed
ManxMaggie - 21 Jun 2016 à 11:09
 ManxMaggie - 18 Jul 2016 à 05:13
Hello,

I'm working with deadlines, and projects need to progress from one stage to another by specific dates.

I have 3 deadlines:
A: Create BRD by date A
B: Get project estimated by date B
C: Begin project development by date C

I have a sheet where all projects are listed in rows where I change the project status (BRD created, project estimated, development started). What I want is for the row to change colors if the project hasn't change its status by the deadlines above.

Is this even possible?

2 responses

TrowaD Posts 2921 Registration date Sunday 12 September 2010 Status Contributor Last seen 27 December 2022 555
21 Jun 2016 à 11:49
Hi ManxMaggie,

Start by slecting all rows you want to apply the conditional format (CF) to and choose to use a formula in CF:
=AND($D2="BRD created",$A2<TODAY())
=AND($D2="project estimated",$B2<TODAY())
=AND($D2="development started",$C2<TODAY())

The column D reference refers to the project status column. Change to match yours.

Best regards,
Trowa
Hi TrowaD,

Thanks for your reply. I'm afraid this didn't work; it's highlighting cells where the value is different to the specified one. e.g. BRD created formula is highlighting project estimated.

Thanks