using a formula to calculate a date in Gantt schedule
I want to use a formula to create the date in my project schedule (not based on predecessor/successor, but based on %complete of a summary task… the date columns dont seem to allow input of formulas? how can I accomplish this:
Best Answer
-
Hi @SRaben
If you enable dependency in your project sheet, you can not use a formula in the dates column.
A workaround is to create a separate sheet to calculate data and create a link to the date in the project sheet.
The demo sheet below links another sheet's Start Date for Invoice 50% Fab row.
In the other sheet, % Complete is referenced from the project sheet, and the start date is calculated with the following formula;
[% Complete] =INDEX({project schedule Range % Complete}, MATCH([Dependent Task]@row, {project schedule Range Primary}, 0))
[Start Date] =IF([% Complete]@row > 0.5, TODAY(), "N/A")
Instead of using cell reference like [% Complete]126, I added the [Dependent Task] column to make the formula a column.
Answers
-
Hi @SRaben
If you enable dependency in your project sheet, you can not use a formula in the dates column.
A workaround is to create a separate sheet to calculate data and create a link to the date in the project sheet.
The demo sheet below links another sheet's Start Date for Invoice 50% Fab row.
In the other sheet, % Complete is referenced from the project sheet, and the start date is calculated with the following formula;
[% Complete] =INDEX({project schedule Range % Complete}, MATCH([Dependent Task]@row, {project schedule Range Primary}, 0))
[Start Date] =IF([% Complete]@row > 0.5, TODAY(), "N/A")
Instead of using cell reference like [% Complete]126, I added the [Dependent Task] column to make the formula a column.
-
Thank you!!!
-
Happy to help! Your upvote helps others find this. Thanks!😁
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!