Hello,
I have a column that I need to show if it contains more than 1 value from one column, while referencing another column. Below is a example of a before and after of what I want:
Before:
| ID | Color |
| 1 | Red |
| 1 | Red |
| 2 | Blue |
| 2 | Red |
3 | Red |
| 3 | Blue |
| 3 | Red |
| 4 | Blue |
After:
| ID | Color | Contains Both Colors? |
| 1 | Red | No |
| 1 | Red | No |
| 2 | Blue | Yes |
| 2 | Red | Yes |
| 3 | Red | Yes |
| 3 | Blue | Yes |
| 3 | Red | Yes |
| 4 | Blue | No |
So in this example the third column is checking if the "ID" column is marked for both Colors in the second column. If that ID is marked for both Red and Blue, then in the third column it will state "Yes", otherwise "No".
If someone can show me how to create a formula for this that would be much appreciated!
Thanks!