Displaying a symbol in a column based on the combination of values in two other columns
Hi,
I am trying to figure out how to display a symbol based on the values of the Result column and the Status column as follows:
Is there a way to accomplish this with a formula or do I need to use reference sheets?
Thanks!
Best Answer
-
Well... yes it can be done... but those are quite a few conditions. Try this:
=IF([Result]@row = "", IF(OR([Status]@row = "", [Status]@row = "Not Started", [Status]@row = "In Progress", [Status]@row = "Complete"), "", IF([Status]@row = "Delayed", "Hold", IF([Status]@row = "Rollback", "No"))), IF([Result]@row = "Fail", IF(OR([Status]@row = "", [Status]@row = "Not Started", [Status]@row = "In Progress", [Status]@row = "Delayed"), "Hold", IF(OR([Status]@row = "Complete", [Status]@row = "Rollback"), "No")), IF([Result]@row = "Success", IF(OR([Status]@row = "", [Status]@row = "Not Started", [Status]@row = "In Progress", [Status]@row = "Delayed"), "Hold", IF([Status]@row = "Complete", "Yes", IF([Status]@row = "Rollback", "No"))))))
Answers
-
Well... yes it can be done... but those are quite a few conditions. Try this:
=IF([Result]@row = "", IF(OR([Status]@row = "", [Status]@row = "Not Started", [Status]@row = "In Progress", [Status]@row = "Complete"), "", IF([Status]@row = "Delayed", "Hold", IF([Status]@row = "Rollback", "No"))), IF([Result]@row = "Fail", IF(OR([Status]@row = "", [Status]@row = "Not Started", [Status]@row = "In Progress", [Status]@row = "Delayed"), "Hold", IF(OR([Status]@row = "Complete", [Status]@row = "Rollback"), "No")), IF([Result]@row = "Success", IF(OR([Status]@row = "", [Status]@row = "Not Started", [Status]@row = "In Progress", [Status]@row = "Delayed"), "Hold", IF([Status]@row = "Complete", "Yes", IF([Status]@row = "Rollback", "No"))))))
-
It works beautifully! You are a genius! Thank you!
-
I'm glad I could help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!