I have a SharePoint list, and tag column with multiple selections (choices),
trying to multiple filters on gallery with multiple selections.
I do the same work with Reza Dorrani's PowerApps Multiple Filters on Gallery on youtube.
I set Gallery.Items the function below:
Search(Filter('DataSource', IsBlank(ComboBox.SelectedItems.Value) || IsEmpty(ComboBox.SelectedItems) || 'TagColumn' in ComboBox.SelectedItems), SearchBox.Text, "Title")
Every part is works well,
but <'TagColumn'> keep showing : Invalid argument type. Cannot use Table in this context.
Then I tried : TagColumn = ComboBox.SelectedItems
but <=> shows : Cannot compare table (Both of data type are table)
So I'm wondering the function just works on Dataverse database, but SharePoint?
Or I missed something else?
Any advise and information would be appreciate!!