Forum Discussion
Hawwa1900
Jan 29, 2020Copper Contributor
Gantt chart date formula
I have a row listing the dates of weeks commencing for each month. I want the Gantt chart to fill each block if the date occurs in that week. At the moment, it won't fill if the start date isn't ...
Riny_van_Eekelen
Jan 29, 2020Platinum Contributor
Use this one in stead. Then it works as you want it to, I believe.
=AND(ISOWEEKNUM(J$6)>=ISOWEEKNUM($F7), ISOWEEKNUM(J$6)<=ISOWEEKNUM($G7))Should a project carry over a year-end you probably need to work in the year also.
Hawwa1900
Jan 29, 2020Copper Contributor
Thanks! What if I then want to change the colour depending on another cell value?
=ISNUMBER(SEARCH("Low risk",$C8))
Do I just add this into the formula you gave?