I have a SharePoint list called JobsTest that has the following structure. JobsTest(ID, Title, Assigned Person). The Assigned Person field is a Choice data type and can contain multiple values.
I want to be able to filter all of the Jobs where "Alice" is one of the Assigned Persons. This should return Jobs 1 and 3 from my data below and see screenshot.
Data:
JobsTest( 1, "Job 1", "Alice")
JobsTest( 2, "Job 2", "Bob")
JobsTest( 3, "Job 3", ["Alice", "Bob"])
I have tried the following formulas with no luck:
Filter(JobsTest, 'Assigned Person' in "Alice")
Filter(JobsTest, 'AssignedPerson'.Value = "Alice").Title
I have also played with the Choices() function.
Please can someone point me in the right direction.
Thanks