Symptoms
By default both JIRA issue navigator and REST API return a maximum of 1000 search results. Hence when exporting to Excel, JIRA will only export the first 1000 issues.
Cause
The maximum allowable value is dictated by the JIRA property ‘jira.search.view.default.max’ which is set to 1000 by default.
Unfortunately it is not possible to change this value as it falls under customization which is not allowed in Atlassian Cloud.
Workaround
Use the pager/start
URL parameter to workaround this issue by adjusting the index value to export issues from 1001 onwards. You will need to merge the results manually.
- Run a search on the issue navigator to get all the issues need to be exported (Example below contains 200k+ issues).
- Export the first 1000 issues using the standard export feature (Export > Excel)
- For the next thousand issues, right click on the same option above and open in new tab, you should get a URL string like below:
https://<instance name>/sr/jira.issueviews:searchrequest-excel-all-fields/temp/SearchRequest.xls?jqlQuery=&tempMax=1000
Cancel the download, as we only require the URL string.
- Append the &pager/start=1000 at the end of the URL string to instruct JIRA to export from index 1001 and above. Example:
https://<instance name>/sr/jira.issueviews:searchrequest-excel-all-fields/temp/SearchRequest.xls?jqlQuery=&tempMax=1000&pager/start=1001
Visit this URL in your browser and save the file when prompted. For the subsequent 1000 issues, adjust the index value accordingly, for example
&pager/start=2001
(and so forth). - Open the exported Excel files and manually consolidate them if necessary.
OTHERWISE INSTALL MY PLUGIN:
One thought on “Export More than 1000 Issues to Excel from Issue Navigator in JIRA”