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.7K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 468 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!