Report Builder - Sort states by specific order
7.0.2
Status:
New
Assigned
Working
Completed
All, of course using Sort does Alphabetical or Reverse. How can I use Report Builder to display the status by the order above, or if I add additional states?
thanks
|
One answer
Pranjan Patel (21●1)
| answered Apr 30, 1:06 a.m.
edited Apr 30, 3:27 a.m. by Fariz Saracevic (919●6●13) 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 |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
Hi Sterling,