Forum Discussion
njconsult
Jul 08, 2022Copper Contributor
Conditional Formatting Not applying to cells
Hi All, I am in the process of developing a Gantt Chart and using Conditional Formatting to fill the cells from data in adjacent cells. Unfortunately, if I change the sequence from what would be...
- Jul 09, 2022
njconsult I did some testing and arrived to a CF formula that works for the weekly actual
view.
=AND(K$5>=$F8-WEEKDAY($F8,2)-1,K$5<=WORKDAY($F8,$G8-1,2))
The one for the daily actual view would be:
=AND(K$5>=$F8,K$5<=WORKDAY($F8,$G8-1,2))
Please see if this indeed works out for you
Riny_van_Eekelen
Jul 09, 2022Platinum Contributor
njconsult I did some testing and arrived to a CF formula that works for the weekly actual
view.
=AND(K$5>=$F8-WEEKDAY($F8,2)-1,K$5<=WORKDAY($F8,$G8-1,2))
The one for the daily actual view would be:
=AND(K$5>=$F8,K$5<=WORKDAY($F8,$G8-1,2))
Please see if this indeed works out for you
- njconsultJul 19, 2022Copper ContributorHi Riny,
Thank you so much this worked!