So I have a combobox which has country name inside it which I am using to filter my Gallery items. This is the query I have used
Filter('Travel Request',
IsBlank(ComboBox_2.SelectedItems.Value)|| IsEmpty(ComboBox_2.SelectedItems) ||
CountryofTravel.Value = ComboBox_2.Selected.Value
)
Travel Request is my Table, and CountryofTravel is the CHOICE column which i am filtering with.
Problem is when I select 2 countries in my combobox , it only shows the items corresponding to the latest country.
YES I do have allow multiple selections on .
How do I Resolve this?