Hoping someone can help me.
I have a gallery (gallery2) set to a SharePoint list distict choice column.
Based on the selected value I have it filtering another gallery.
I also have a textbox search, searching both galleries.
I can get the search to work well or I can get the filter to work well, but I'm struggling to get both to work well.
Here is where the search is working well, but the filter by selected is not working:
If(Gallery2.Selected.Value,Filter('Service Catalog_1',Category.Value = Gallery2.Selected.Value),Search('Service Catalog_1',TextBox4.Value,"field_4","Title","field_6"))
Here is where the filtering is working well, but the search is being a bit odd:
If(Gallery2.Selected.Value="All",'Service Catalog',Search(Filter('Service Catalog',Category.Value = Gallery2.Selected.Value),TextBox4.Value,"field_4","Title","field_6"))
What am I missing?