Hi @vish_p ,
Firstly collect the newest 2000 items (I assume you have increased the limit to this in Advanced Settings)
ClearCollect(
colWhateverName,
Sort(
YourListName,
ID,
Descending
)
)
Then the Distinct Function will work fine on your collection.
Distinct(
ColWhateverName,
YourColumnName
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.