Hi there
I have a sharepoint list of images and wish to show the last submitted ID in a collection or variable.
Currently I have a collection called ImageID showing the ID's
ClearCollect(ImageID,'Images-test'.ID,Sort('Images-test',ID, SortOrder.Descending))
I only need the last ID submitted and do not want to receive any others.
Is there any easy way?
Solved! Go to Solution.
This code will retrieve the last record submitted to a datasource
Set(varLastRecord, First(Sort(your_datasource_name, ID, Descending)))
To obtain the ID of the LastRecord use this code
varLastRecord.ID
---
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."
This code will retrieve the last record submitted to a datasource
Set(varLastRecord, First(Sort(your_datasource_name, ID, Descending)))
To obtain the ID of the LastRecord use this code
varLastRecord.ID
---
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."
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
202 | |
185 | |
77 | |
47 | |
37 |
User | Count |
---|---|
325 | |
259 | |
123 | |
72 | |
58 |