Report Builder - Sort states by specific order
One answer
Hi Sterling,
You can get that report by using Custom Expression. So, This method can be implemented by adding the code below to a custom expression.
IF($Work Item:Status$ = "New", 1,
IF($Work Item:Status$ = "In Progress", 2,
IF($Work Item:Status$ = "Resolved", 3,
IF($Work Item:Status$ = "Done", 4,5)
)))
This will add a new column which will allow you to sort based on the number which are related to the status.
Thanks,
Pranjan Patel
Comments
Fariz Saracevic
FORUM MODERATOR / JAZZ DEVELOPER Apr 25, 5:03 p.m.Hi Sterling,