In Jira Service Desk 3.9.2, how do I create a report that shows all issues ranked by the reporter? I'd like to see which users are submitting the most issues.
The problem that I'm running into is that the CSV export is limited to a thousand records. I would prefer not to have to break up the data by date, for instance, in order to get under 1,000 records.
You can use JIRA search issue and use JQL to list all the issues in the project.
project = "Your Project name" ORDER BY reporter ASC
Then you can extract the issues to CSV for reporting.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.