Calculate Status Column by %Complete
Trying to set status column based on % complete - I can make the formula work with just the first statement - =IF([% Complete]@row = 0, "Not Started")
=IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row >= 1 < 100, "In Progress", IF([% Complete] = 100, "Complete")))
Anyone know how to make the above formula work?
Thanks!
Best Answer
-
When writing formulas for a % Complete you have to use the decimal form of the value in the formula. Additionally, in order to check against multiple conditions you have to use the AND() function. This formula should work:
=IF([% Complete]@row = 0, "Not Started", IF(AND([% Complete]@row >= 0.01, [% Complete]@row < 1), "In Progress", IF([% Complete]@row = 1, "Complete")))
Let me know if you have any questions!
Hope this helps!
Mike
Answers
-
When writing formulas for a % Complete you have to use the decimal form of the value in the formula. Additionally, in order to check against multiple conditions you have to use the AND() function. This formula should work:
=IF([% Complete]@row = 0, "Not Started", IF(AND([% Complete]@row >= 0.01, [% Complete]@row < 1), "In Progress", IF([% Complete]@row = 1, "Complete")))
Let me know if you have any questions!
Hope this helps!
Mike
-
@Mike Raposo - Ah that makes sense, it did the trick. Thanks a bunch!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!