Hello,
I am trying to filter a Gallery by Dropdown and Text search box.
I tried this code↓
SortByColumns (Search (Filter ('DTC List for App', Title= Dropdown1.Selected.Value),TextSearchBox1.Text,"Identifier"),"Title",If (SortDescending1,Descending,Ascending))
Filter without Dropdown is like this, ↓
SortByColumns (Filter([@'DTC List for App'], StartsWith (Identifier, TextSearchBox1.Text)),"Identifier", If (SortDescending1, Descending, Ascending))

CIOM→”Title”, B000101→"Identifier"
I want to filter Title by Dropdown and Identifier by Text Search Box.
Could anyone show how I can make it work?
Thank you,