Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to expression in a table which group rows by max of a column.
The result need to show the latest "Description" which is filled in the biggest "stage".
Thank you Q cmmunity
Hello @HAMID_AKBARI,
You can do a table with ID like a dimension, and measure : FirstSortedValue(Description,-Stage)
FirstSortedValue is a function that allows you to retrieve the first value of a column according to a certain sort order.
Have a good day !
Try this
FirstSortedValue(Description, -Stage)
Or
FirstSortedValue(DISTINCT Description, -Stage)
Or
FirstSortedValue(Description, -
Stage, 1)
It dosent work,in fact the data contains one work order to many childs(stage).
in every stage there is User,Date,and Description ...
now i want to see the final status of the table which contain last User,Date and desciption,,,also ther is a Delay duration that calculate time between every data registerd.
thank you