Forum Discussion
Conditional Formatting gantt which has a weekly column header
Hi Iain_KNox
the only way I can think of is to put that symbol in every cell of the project plan and make it invisible as a default (user defined number format ;;;)
And then change the formatting rule to make the symbol visible once the conditions are met.
I have attached my example.
Martin_Weiss Looking at row 8,9 in attached I've come across an issue. If the activity is only for that day or for 1 day, the gantt does not populate. It only populates once the duration is 3 days which takes the end date to 19 Sept. Is there a way to add some logic to the conditional format to still populate the gantt when the start-end date is between 2 dates in the column?
- Iain_KNoxAug 26, 2022Copper ContributorMartin Weiss. I thought I'd fixed it by using the same conditional format rule as for milestone but then the gantt does not populate for activity which is greater than 1 day! I really appreciate some guidance as how I can still show activity which is zero day and over 3 days in the gantt when the date is between the column headers. Thanks
- Martin_WeissSep 06, 2022Bronze Contributor
Hi Iain_KNox
sorry for my late reply (I was on holiday). We need to extend the formatting rules a bit more, like this:
=OR(AND($I4>=N$3;$I4<O$3;$C4="L1");AND($J4>=N$3;$J4<O$3;$C4="L1");AND($I4<=N$3;$J4>=O$3;$C4="L1"))
In the attached file, I adjusted the rules already. Please check it out and let me know if it works for you.
- Iain_KNoxSep 08, 2022Copper ContributorThanks Martin_Weiss. That's great. Regards the rounddown conditional format rule, how do I update this so it populates from the start date. As you can see if the attached it starts one cell to the right of the gantt bar, cell AE4, AE7. Also for cell AA12 and AC13 it does not populate at all. Current rule below.
=AND($I4<=O$3,ROUNDDOWN(($J4-$I4+1)*$G4,0)+$I4-1>=O$3)
- Iain_KNoxAug 25, 2022Copper ContributorMartin Weiss I think I have fixed it, I needed to update the conditional formatting for L1-L3.