Formula - use % complete to determine whether in progress

Hi!
I cannot figure this out. I have a "% Complete" column (0, 25, 50, 75, 90, 100, Cancelled). I made a simple checkbox column that should be checked if the item's "% Complete" value is equal to anything other than "0%", "100%", or "Cancelled." But it's not working, and I have no clue why.
Here's the formula:
=IF(OR([% Complete]@row = "0%", [% Complete]@row = "100%", [% Complete]@row = "Cancelled"), false, true)
Here's a screenshot so you can see how it's failing to work:
What am I doing wrong? This seems like a simple formula.
Best Answer
-
Try:
=IF(OR([% Complete]@row = 0, [% Complete]@row = 1, [% Complete]@row = "Cancelled"), 0, 1)
In formulas, 1 = 100%, .5 = 50% and so on.
Answers
-
Try:
=IF(OR([% Complete]@row = 0, [% Complete]@row = 1, [% Complete]@row = "Cancelled"), 0, 1)
In formulas, 1 = 100%, .5 = 50% and so on.
-
That did it! Thank you, @Nic Larsen.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 450 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!