I have a DataTable on PowerApps, this DataTable has a State Column, delimiting by comma ( , ).
Like:
AL, AK, AZ, AR, CA, CO, CT, DE, FL, GA, HI
CA
CO
I use a ComboBox to select many options of filtering, like [CA, CO].
But the results only show the exactly text.
CA and CO
But I like to include the first row too, because on the row has CA and CO.
I have this filter function.
Filter(dataSource, States in ComboBox1.SelectedItems.state)
How I can use the filter function or another solutions in PowerApps?