Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, i have an issue i need help please.
I have the following data :
I want to create a measure (Set analysis) that gives me the amount with the highest transaction id.
in this exemble, the result should be one lie with the amount 185,35
Thanks
Try this
LOAD *, RecNo() as RecNum;LOAD * INLINE [date, ID, Amount, Code15/02/2024, 224, 25967, 215/02/2024, 224, 18535, 2];
Expression: =FirstSortedValue(Amount, -RecNum)