Re: Need better understanding of how the Default Sort button works and if it can be changed
Not sure if this was what you were suggesting but The Gallery ITEMS formula is currently set to: Sort(Filter([@'VEHICLE INSPECTIONS'], StartsWith(DEPARTMENT.Value, SearchInput1.Text)), DEPARTMENT.Value, If(SortDescending1, SortOrder.Descending, SortOrder.Ascending))
I am assuming since the sort button within the Gallery is set to: UpdateContext({SortDescending1: !SortDescending1}) that what ever
This allows the list to be narrowed down by department name. If I it to: Sort(Filter([@'VEHICLE INSPECTIONS'], StartsWith(DEPARTMENT.Value, SearchInput1.Text)), INSPECTION_DATE, If(SortDescending1, SortOrder.Descending, SortOrder.Ascending))
The filter then allows me to narrow it down by department and then use the sort button to sort by date.
Does the Title Field have any bearing on any of this?