
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?
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."