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."
User | Count |
---|---|
179 | |
119 | |
87 | |
44 | |
41 |
User | Count |
---|---|
245 | |
156 | |
127 | |
77 | |
73 |