Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
Our plans, are beeing saved according to specific frequencies. When a plan is adjusted between two savings, we will get to records with the same id, but different attributes. I pick the value that have the latest saving-date:
Only( {$<Created={"=Aggr(Max(SavedDate),PlanId)"}>} PlanDate )
This returns one of the PlanDates, but not nesecarrry the latest saved.
Anyone than can help?
Hi,
Have you tried using FirstSortedValue() function? Probably something like this...
=FirstSortedValue(PlanDates, - Created)
Thanks,
DV
Hi,
Have you tried using FirstSortedValue() function? Probably something like this...
=FirstSortedValue(PlanDates, - Created)
Thanks,
DV
Thank you, Deepak. Worked fine.
Anders