Checkbox, Texts, RYG

I am trying to create a formula based on checkbox and dropdown list column.
The result I am looking for is for Column 3 to have either a Red or Green symbol based on if Column 1 is checked OR Column 2 includes a specific word. Column 2 is a drop down with multiple options.
Is this possible?
Best Answer
-
Try this format and update columns names as needed: =IF(OR(CONTAINS("Insert Word", [Column 2]@row), [Column 1]@row = 1), "Green", "Red")
If column 1 is checked or it finds the word in Column 2 it will go green, if not Red. Adjust as needed.
Answers
-
It would be something like this: =IF(AND([Column 1]@row = 1, [Column 2]@row = "Yes"), "Green", "Red")
1 = Checked
-
This formula didn't pick up the specific word I needed in Column 3. I incorrectly post AND earlier where I needed an OR formula
-
What are your options in Column 2? Can they select more than one?
-
Yes they can select more than one.
-
Try this format and update columns names as needed: =IF(OR(CONTAINS("Insert Word", [Column 2]@row), [Column 1]@row = 1), "Green", "Red")
If column 1 is checked or it finds the word in Column 2 it will go green, if not Red. Adjust as needed.
-
YES!! Thank you!
-
Hello @Nic Larsen - I need to revise this formula to add: if column 4 has a specific word it will bring up a yellow circle.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.9K Get Help
- 441 Global Discussions
- 153 Industry Talk
- 501 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 79 Community Job Board
- 511 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!