Help! What am I doing wrong?
Hi - I hope this is an easy fix. I am trying to write a formula that will show "complete" when % Complete is 100%, "not started" when % complete is blank or 0 and "In progress" when it is anything else. The formula works when I split it apart but when I put it togetehr, I get "Unparseable". Thank you in advance.
=IF([% Complete]@row = 1, "Complete"), (IF(OR([% Complete]@row = "",[% Complete]@row= 0))), "Not Started", "In Progress")
Answers
-
You have some parenthesis issues. Try this:
=IF([% Complete]@row = 1, "Complete", IF(OR([% Complete]@row = "", [% Complete]@row = 0), "Not Started", "In Progress")
-
Oh thank you so much. I figured it was something simple, I really appreciate the quick and correct response. :-) Have a wonderful day!!!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65K Get Help
- 443 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 129 Brandfolder
- 150 Just for fun
- 70 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!