Currently, this is on the PowerApps gallery so we can search a SharePoint List by three columns:
SortByColumns(Filter(SP_List, Or(StartsWith(Title, txtBrowseSearch.Text),StartsWith(Location, txtBrowseSearch.Text),
StartsWith(Employee.DisplayName, txtBrowseSearch.Text))), "Title", If(SortDescending1, Descending, Ascending))
I need to have the gallery sorted by ‘Date Created’ Newest to Oldest:
Trying to use this: Sort(SP_List,Created,Descending) but not working with the code above. Is there another way to sort the gallery?
Thank you - Park