A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi Natalie,
Based on your sharing, your current equation =Project_Start-WEEKDAY(Project_Start,1)+2+7*(Display_Week-1) is returning weekly column dates by creating Monday of each displayed week then adding 7 days per column/week.
So, to make it monthly or twice monthly, you need to change the timeline header formula. You can try using this formula to replace your current one
- For twice monthly:
=DATE(YEAR(Project_Start),MONTH(Project_Start)+INT((Display_Week-1)/2),IF(MOD(Display_Week-1,2)=0,1,15)) - For monthly:
=DATE(YEAR(Project_Start), MONTH(Project_Start) + Display_Month-1,1)
Please note that these formulas are provided solely based on your description so if I have misunderstood anything about your situation, kindly notify me and I'll be happy to assist you further.
For the best possible assistance, please share a screenshot of your current Gantt chart structure and if possible, your expected outcome too. This will help me clearly understand the situation to provide the best approach for your concern.
Thank you for your understanding and cooperation. I'm looking forward to your reply.
If the answer is helpful, please click "Accept Answer" and kindly upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.