LAST RECORD IN A LIST

0
How do I get the last record in a list ? (The opposite of “Head”)
asked
5 answers
8

Hi juan,

 

You can implement a microflow,

in that microflow retrieve all the objects and then using list operation count all the objects also, don’t forget to create a root object so that you can link your desired value to it, then apply a loop on the list and run the loop the while the $value <=count. 

apply a decision box and apply a decision in such a way that all the objects, other than the last object, result in the conituation of the loop. And as soon as the last object comes, just link it to the create object (you created) and return it.

hope it helps!

answered
4

See Marketplace module List Utilities.

answered
2

Hi,

 

If you using the Store Created date (System Members) it is very is easy to get the last one. When you receive data meanwhile you should Sort the “createddate” attribute in descending order.

answered
1

Hi Juan le Roex,

 

If you want to retrive without any constrain you can use list operation activity tail to get the last record from the list of object.

 

If you want to get data based on any constrain, first apply the constrain and the go for list operation activity tail type.

answered
0

Thanks Folks.

answered