Team,
This is my first post in Power Apps, And just created SharePoint list and published app.
I see the list items are not getting sort based on list ID in App,Can any one please help me how can I make it.
Thanks & Regards,
Infanst_PowerAppDeveloper
Solved! Go to Solution.
Hi @infant_Dev ,
Do you want to sort your Gallery Items based on ID column of your SP list?
I have made a test on my side, please consider modify the formula within the Items property of the Gallery to following:
SortByColumns(
Filter('YourSPList', StartsWith(Title, TextSearchBox1.Text)),
"ID", /* <-- Modify formula here */
If(SortDescending1, Descending, Ascending)
)
Please take a try with above solution, check if the issue is solved.
Best regards,
Hey,
just set your gallery's items field (in advanced option) to:
Sort(datasource/sharepoint list, ID, descending/ascending)
Hope this helps.
Hi @infant_Dev
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hi @infant_Dev ,
Do you want to sort your Gallery Items based on ID column of your SP list?
I have made a test on my side, please consider modify the formula within the Items property of the Gallery to following:
SortByColumns(
Filter('YourSPList', StartsWith(Title, TextSearchBox1.Text)),
"ID", /* <-- Modify formula here */
If(SortDescending1, Descending, Ascending)
)
Please take a try with above solution, check if the issue is solved.
Best regards,
Tq for your gentle response
User | Count |
---|---|
141 | |
136 | |
77 | |
75 | |
69 |
User | Count |
---|---|
225 | |
187 | |
66 | |
62 | |
55 |