Hi,
I have seen similar post but for choice columns
I have a choices column and want to be able to filter using multi-select on a combo box. I don't want to create tick boxes as shown in this video Power Apps filter multiple selections - Exact or All options - Try again - Bing video as the list of selections will be too long on the screen.
So I have a choices column of USStates and several states can be collected but I also want to search for several different states being chosen by using a combobox that has the same choices (USStates).
At the moment I have
Filter(MyTable, USStates in ComboBox4.SelectedItem.Value) - This only filters by the last(most recently) selected item and not all sleected. So I tried,
ForAll (ComboBox.SelectedItems, Filter(MyTable, USStates in ComboBox4.SelectedItem.Value)) mbut then I just get true/false values.
Any ideas? I am really new to powerapps and still figuring out the filtering.
Thanks