Percent complete is showing more 100%
The formula works, but it is still calculating after the finish date is met. How can I stop that from happening? Below is the current formula I am running.
=IF(ISBLANK([Estimated Start]@row), 0, (TODAY() - [Estimated Start]@row) / ([Estimated Finish]@row - [Estimated Start]@row))
Thank you,
Best Answer
-
Try this:
=MIN(IF(ISBLANK([Estimated Start]@row), 0, (TODAY() - [Estimated Start]@row) / ([Estimated Finish]@row - [Estimated Start]@row)), 1)
Answers
-
Try this:
=MIN(IF(ISBLANK([Estimated Start]@row), 0, (TODAY() - [Estimated Start]@row) / ([Estimated Finish]@row - [Estimated Start]@row)), 1)
-
Can you add or maybe already have a column which designates the task as complete? Then you could add something like:
=IF(ISBLANK([Estimated Start]@row), 0, IF(Status@row <> "Complete", (TODAY() - [Estimated Start]@row) / ([Estimated Finish]@row - [Estimated Start]@row), "")
-
@Paul Newcome Thanks for your help on this! That is what it needed.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!