Hi,
My app should allow users to filter the gallery 3 ways:
1. By Status from dropdown
2. Search input box
3. Sort gallery by priority

This is my current code:
If(StatusDropdown.Selected.Value = "All" && IsBlank(SearchBox.Text),
SortByColumns(DataSource, SortColumn,If(SortDecending,Ascending,Descending)), //SortColumn variable set on sort icon
Filter(Datasource, SearchBox.Text in Title || Status.Value = StatusDropdown.Selected.Value))
Problem: The problem I'm facing here is that it does everything except filter by other options from the status dropdown.
Any assistance is highly appreciated! Thank you