Stuck with an IF Formula
I wrote a IF formula for a status column that is based on % complete
=IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", "Active"))
What I want to add if there is a check box in the Task On Hold to change the status to "On Hold" which is one of the drop downs.
I am having trouble incorporating another column logic into the status.
Is it possible to accomplish the IF statement to take into consideration?
Thank you in advance!
Best Answer
-
Hello Carl,
You were almost there! Here is one solution.
=IF([Task on Hold]@row = 1, "On Hold", IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", "Active")))
Let me know if this is not what you had in mind and we'll tweak it until it fits your needs
Answers
-
Hello Carl,
You were almost there! Here is one solution.
=IF([Task on Hold]@row = 1, "On Hold", IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", "Active")))
Let me know if this is not what you had in mind and we'll tweak it until it fits your needs
-
KDM, this worked great, thank you so much!
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 478 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives