Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
Like FirstSortedValue, is there a LastValueSorted as I need the lowest value rather than the first, or is there another way?
Thanks
You can change the sort order
FirstSortedValue(Dim, -Date) -> 1st from the top
FirstSortedValue(Dim, Date) -> 1st from the bottom
You can change the sort order
FirstSortedValue(Dim, -Date) -> 1st from the top
FirstSortedValue(Dim, Date) -> 1st from the bottom
hi,
You can use + or - sign to reverse the sorting order like:
firstsortedvalue(Customer,-orderDate)
HTH
firstsortedvalue(Dimension, -Measure)
It will give you last value
Thanks guys, I've got the answer now lol.