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.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!