Hello all,
I am trying something that I just can't quite get right. I'm attempting to sort my Gallery View of a Sharepoint list on a few separate columns.
This is how I currently have it set:
SortByColumns(Filter([@'Regular Log'], StartsWith(LastName, TextSearchBox1_1.Text)), "DateTimeofPage", If(SortDescending1, Ascending, Descending))
The DateTimeofPage is really just a Date field. They are using an older Sharepoint list and the Columns are set up somewhat funky. Ideally, they would like the DateTimeofPage (date) followed by Time of Page Hours (hour) then Time of Page Minutes (minutes) in that order to get their gallery view to show the most recent entry followed by older entries.
So it would be a MM-DD-YYYY, H, M ordering scheme.
Any help would be appreciated!