IF Formula Help
Hi guys,
I would like to implement the following automation process of "% Complete" -> "Status".
The approach would be:
- IF: % Complete: 0% -> "Not Started"
- IF: % Complete: 0% ≤x≤ 100% -> "In Progress"
- IF: % Complete: 100% -> "Completed"
My current IF formula does not display and consider the last 2 conditions, I honestly do not know why.
Could anybody help me on this? :)
Many thanks in advance!!!
Best regards,
Torsten
Best Answer
-
Hello Torsten,
You can try the formula below. The thing to remember with nested IF statements is that they get processed from left to right. This allows for logic on the last IF statement to simply look for greater than 0, but still show as complete when it equals 1, as the second IF statement takes priority over the last one.
=IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", IF([% Complete]@row > 0, "In Progress")))
Hope this helps.
Answers
-
Hello Torsten,
You can try the formula below. The thing to remember with nested IF statements is that they get processed from left to right. This allows for logic on the last IF statement to simply look for greater than 0, but still show as complete when it equals 1, as the second IF statement takes priority over the last one.
=IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", IF([% Complete]@row > 0, "In Progress")))
Hope this helps.
-
Amazing, it works!! Thanks a lot Tim!! :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66K Get Help
- 429 Global Discussions
- 147 Industry Talk
- 487 Announcements
- 5.2K Ideas & Feature Requests
- 86 Brandfolder
- 152 Just for fun
- 74 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!