Conditional Format - Column Date Range & Another Variable

The Great SrH

Board Regular
Joined
Jan 16, 2015
Messages
179
Hi,

I have an Excel Document which is a bit of risk project tracker. Due to the information I cant directly share it but will do a similar table below!

I would like to place a conditional format into the excel columns E-H (which i'm assuming would be a formula) based on a couple variables.

As an example, if a Status in Column B is On Track, I need the colour to be Green. If Status is Overdue, I need the colour to be Red.

I will need the Columns E-H to only show that colour if the columns are between the Start Date and End Date date range. I have written the words in columns E-H to show what the output I would expect to be.

Any ideas?!

ABCDEFGH
ProjectStatusStart DateEnd DateMar-24Apr-24May-24Jun-24
Project AOn TrackMar-24Jun-24greengreengreengreen
Project BOverdueMar-24Apr-24redred
Project COn TrackApr-24Jun-24greengreengreen
Project DOn TrackMar-24May-24greengreengreen
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Select cells E2:H5, and then enter this Conditional Formatting formula:
Excel Formula:
=AND($B2="On Track",E$1>=$C2,E$1<=$D2)
and choose your "green" fill option.

Then, repeat those same steps, adding in another CF rule, this time with formula:
Excel Formula:
=AND($B2="Overdue",E$1>=$C2,E$1<=$D2)
and choose your "red" fill option.

Result:

1712063764715.png
 
Upvote 1
Solution
Select cells E2:H5, and then enter this Conditional Formatting formula:
Excel Formula:
=AND($B2="On Track",E$1>=$C2,E$1<=$D2)
and choose your "green" fill option.

Then, repeat those same steps, adding in another CF rule, this time with formula:
Excel Formula:
=AND($B2="Overdue",E$1>=$C2,E$1<=$D2)
and choose your "red" fill option.

Result:

View attachment 109321
Amazing - thank you so much for the quick response. My brain clearly isnt working today
 
Upvote 0
You are welcome.
Glad I was able to help!
 
Upvote 1

Forum statistics

Threads
1,215,202
Messages
6,123,625
Members
449,109
Latest member
Sebas8956

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