My data sources are Sharepoint Lists.
Here is a formula I use:
Filter([@SECurity_CATegories_PBI], CAT_TYPE = ComboBox2_1.Selected.Value)
It works perfectly with "Allow Searching" turned off, but once it's on, I can only see an empty field.
I thought it might be some delegation errors so I changed it to
Filter([@SECurity_CATegories_PBI], StartsWith(CAT_TYPE , ComboBox2_1.Selected.Value))
But nothing changed.
Help!