I am using the following code to get the newest distinct value based on Unique GRS
ForAll(
GroupBy(
LogDataALL,
"GRS",
"_items"
),
First(
Sort(
_items,
'Log Date',
SortOrder.Descending
)
)
)
What i need to add is another Sort function that will show the oldest record 1st based on the unique values.
Any ideas welcome please