I am trying to capture work done that was assigned to individuals in three different scenarios:
Scenario 1) work done by members of a specific team (team members listed on a different sheet, noted as {ID Team Roll Call Sheet Range 1})
Scenario 2) work done by people that are NOT members of this specific ID Team
Scenario 3) and collaborative work done by people on this specific ID Team AND not on this specific team.
In all three scenarios I am trying to trigger a separate column checkbox (Harvey balls used elsewhere).
For Scenario 1 : I trigger a checkbox that compares the multi-select "Assigned to" contact cell to a range on another sheet using this formula which works:
=IF(HAS({ID Team Roll Call Sheet Range 1}, [Assigned To]@row), 1, 0)
For scenario 2: I trigger a checkbox that compares the multi-select "Assigned to" contact cell to a range on another sheet using this formula which works to an extent:
=IF(NOT(HAS({ID Team Roll Call Sheet Range 1}, [Assigned To]@row)), 1, 0)
Right now it returns a checkmark as soon as a contact is found that is not in the specified ID Team list, and also even when there are both ID team members and those that are not ID team members. Not what I was going for. I tried CONTAINS instead of HAS and that checked everything, also not working.
For Scenarios 3: I tried to trigger a checkbox that pulled both above conditions together- when both ID Team members AND non-ID Team members were listed The formula version below is not coming up with an error message(which is a sort of success?), but is not checking any boxes (used as column formula).
=IF(AND(HAS({ID Team Roll Call Sheet Range 1}, [Assigned To]@row), NOT(HAS({ID Team Roll Call Sheet Range 1}, [Assigned To]@row))), 1, 0)
Any suggestions on corrections or other solutions here are welcome!
Thanks,
Kate