Hello folks!
I have a simple sheet with two columns: Supporting_Members and Team. The Supporting_Members column is a multi-select with contact list as the column type.
- PersonA and PersonB are from the Ops team.
- PersonC and PersonD are from the Finance team.
I used this formula for the Team column:
=IF(AND(CONTAINS("PersonA@example.com", JOIN(", ", [Supporting_Members]@row)), CONTAINS("PersonB@example.com", JOIN(", ", [Supporting_Members]@row))), "Ops", "none")
However, I'm getting "none" when it should be "Ops". I suspect this has to do with the column type, which is a contact list for the Supporting_Members column.
Any other ideas why I'm not getting the expected outcome?