If(and with RYG buttons
Comments
-
-
OK I was wrong! LOL
=IF(Status@row = "Complete", "Green", IF(Status@row = "Pending", "Yellow", IF(Status@row = "In Process", "Yellow", IF(Status@row = "In Progress", "Yellow", IF(Status@row = "", "Red")))))
It will put in a yellow dot for pending but not for InProcess or In Process-delay.
What am I missing?
-
I do not see "InProcess" (only "In Process" with a space), and I do not see "In Process-delay" specified in your formula. You would need to include those. You can use a CONTAINS function to specify a "Yellow" return if the Status column is anything that contains the text "process" (the CONTAINS function is not case sensitive, so there's no worries about how it is entered so long as that specific text string is found).
You can also use an OR statement to combine criteria that have the same output. The basic way of doing this would be --> IF(OR(criteria 1, criteria 2, criteria3), return)
=IF(Status@row = "Complete", "Green", IF(OR(Status@row = "Pending", CONTAINS("process", Status@row), Status@row = "In Progress"), "Yellow", IF(Status@row = "", "Red")))
-
Good find Thanks!
-
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 69 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives