Hi,
I want to incentivize my team to resolve tickets in our project.
To do this, I want to create a leaderboard that displays who resolves the most tickets. The query behind this would have to display total tickets resolved, grouped by the user who preformed the "resolve" action in the workflow.
Is there an easy way to do this? Currently, I have to write a separate jql query per person using this query:
project = "IT project" and status was Resolved by [USERNAME] before now() after "2000-01-01"
Thanks.
create a Dashboard and use the two-dimensional gadget or similar.
"Status was resolved by" doesn't exist as you found. Can you not assume that "status was resolved by" is equivalent to Assignee AND status = Done? In other words would using the following JQL filter work?
project = "IT project" and status = Done and resolutiondate <= now() and resolutiondate >= 2000-01-01
then apply that filter to the 2D chart and use Assignee in the y-axis and status in the x-axis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.