Hi, i have an app built directly from sharepoint. need to be able to filter gallery by "Completed", "Collected" or "All"
I have a dropdown input named dropdown1, the onselect of the gallery is currently,
SortByColumns(Filter([@JobRegister], StartsWith(Company, TextSearchBox1.Text)),"Date" , If(SortDescending1, Descending, Ascending))
I thought i would be able something like this to the existing formula above but getting a few errors
&& ( Dropdown1.Selected.Value = "all" || If( Dropdown1.Selected.Value="Completed" || If(Dropdown1.Selected.Value="Collected")))
Can you please assist?