I have a gallery that is filtered by 2 values "Active" and "Pending"
Filter ('SP Job Request',Status.Value="Active" || Status.Value="Pending")
I also want to be able to search by company name. This works on its own
SortByColumns(Filter([@'KBX Job Request'], StartsWith(Company, TextSearchBox1.Text)), "Company", If(SortDescending1, Descending, Ascending))
I am trying to combine the two formulas so that the gallery still only shows active and pending but also have the option to search by company name. Something like below
Filter ('KBX Job Request',Status.Value="Active" || Status.Value="Pending");
SortByColumns(Filter([@'KBX Job Request'], StartsWith(Company, TextSearchBox1.Text)), "Company", If(SortDescending1, Descending, Ascending))
any assistance would be much appreciated