Hallo,
i have a gallery which i want to filter based on a combo box that allows multiple values.
Items property in the combo box:
Sort(Distinct(Ungroup(colTargetGoals, "Assignee"), DisplayName), Result,Ascending)
Items in gallery returns error when i type the following:
Filter(
colTargetGoals,
And(
Or(IsBlank(AssignToCB.SelectedItems),
IsEmpty(AssignToCB.SelectedItems),
Assignee in AssignToCB.Selected.Result
),
TextInput1_2.Text in Title
)
)
"""Cannot use table values in this context..."""
Any ideas?