How would I filter a list to show users there last five most recent items they have used to appear in the list every time they go into the list?
1 Like
Hi @a_fatima
Have you had a look at TOP()
That may be what you are after.
5 Likes
Possible with an ORDERBY() as well, inside of the TOP()
4 Likes
Thank you TOP() worked great! Just what I was looking for!
2 Likes