I have a ComboBox1 and Gallery1.
Gallery1 auto-populates based on the default or chosen content of ComboBox1.
ComboBox1 is set for selecteMultiple = true; MultipleValueDelimiter ", "; IsSearchable = true.
Everything works with just one name chosen. However, if I choose two names in ComboBox1 nothing appears in Gallery1 even though there is a line item in the SP List with the two names in the same column separated by a comma.
How do I update the ComboBox/Gallery to provide the desired content when the two names in the ComboBox (in whatever order) match the two names in the column of the SP List (in whatever order)?
ComboBox1:
Items: Sort(EmployeeListCollection.Title,Title)
DefaultSelectedItems: [User().FullName]
Gallery1:
Items: Filter(SchedulerDetailsListCollection,Title in ComboBox2.SelectedItems)

