My SharePoint list name is 'IUR'
The 'Platform' column is a Choice type.
The 'Platform' data type shows [record] in Power Apps.
I want to add a search(or filter) function for my gallery, use the multi-select to choose items in 'Platform', and show results in the gallery.
I use Combobox to make the dropdown list. It can show P1, P2, P3, P4 correctly.
>> Combobox1 Items = Distinct(IUR, Platform).
Bit I got the error when I used the Search function in the gallery.
>> Gallery Items = Search(IUR, ComboBox1.SelectedItems)
How do I fix this?
Should I use Combobox or Dropdown?
Thank You.