I am new to PowerApps so please be patient with me. 🙂 I am working with a SharePoint list which is used for logging training sessions. The gallery shows a record ID number called ID, a Text field called Skill, Created date, and Text Field called location.
I can search based on record ID number successfully. For this I have the following in the Gallery Item:
If(IsBlank(TextSearchBox1.Text), Logs, Filter(Logs, TextSearchBox1.Text in Text(ID)))
I want to also be able to Sort Ascending and Descending by ID field by clicking on the icon.
I have spent several days going over all the entries and trying out all the solutions (sort, sortby columns, ect., but everytime I try any of the solutions all the records disappear from my gallery. What am I missing? Any suggestion would be very appreciated.