I have a gallery that has a dropdown filter and a search box and I'd like to be able to use both. I can get one or the other working, depending on the formula.
Search box (default)
SortByColumns(Filter(Trials, StartsWith(Title, TextSearchBox1_1.Text)), "Title", If(SortDescending1, Descending, Ascending))
Dropdown filter:
IF(Dropdown1.Selected.Value = "All Sites", Trials, Filter (Trials, Foundry.Value = Dropdown1.Selected.Value))
I'm having a hard time combining two formulas into one usable formula. I found some similar threads but couldn't apply them specifically to what I was going for.
Thank you