Re: Powerapps sort by date columt from sharepoint list
@Anonymous
You can do it with 2 galleries on separate screens.
Put this code in the Items property of the gallery on Screen 1.
Sort(Distinct(your_datasource_name, DateColumnName), Result, Ascending)
Then use this code on the OnSelect property of Gallery1
Navigate(Screen2, None, {locSelectedDate: ThisItem.Result});
Finally, use this code on the Items property of Gallery2 on Screen2.
Sort(your_datasource_name, Result=locSelectedDate, Ascending)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."