Behind/Ahead of Schedule by "x" days
Hi All,
I'd like to add a column that reflects how many days my project plan is ahead/behind schedule. I asked this question last year, but couldn't find it anywhere.
I have a Planned Finish and a Finish Date.
I'd like the row to display the following for each:
- If no variance, display "On Time"
- If late, display " X days Late"
- If early, display "X days Ahead".
Thanks!
Best Answer
-
Try something like this...
=IF([Finish Date]@row > [Planned Finish]@row, [Finish Date]@row - [Planned Finish]@row + " days Late", IF([Planned Finish]@row > [Finish Date]@row, [Planned Finish]@row - [Finish Date]@row + " days Ahead", "On Time"))
Answers
-
Try something like this...
=IF([Finish Date]@row > [Planned Finish]@row, [Finish Date]@row - [Planned Finish]@row + " days Late", IF([Planned Finish]@row > [Finish Date]@row, [Planned Finish]@row - [Finish Date]@row + " days Ahead", "On Time"))
-
Beautiful! thanks so much :)
-
Happy to help! 👍️
-
I am glad that I found this discussion - it's exactly what I was also looking for!
I am using the above formula and wanted to know what I would need to adjust in the formula so that the field is blank until the End date is entered. I replaced @row and entered the row number... but each formula I used still displays "day Ahead" in each field where a task has not yet been started. I want to try to avoid having text in these fields.
Thanks!
Sandra
-
Try something like this...
=IF([End Date]@row <> "", above formula)
This will only run the above formula if the End Date is not blank.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!