Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I have to send reports weekly of all current users in JIRA. Currently having to highlight and scroll down, copy and then paste into Excel to get a list. With over 300 users, this can be tricky and time consuming. Is there a way that this list can be exported to Excel where it then can be manipulated?
Can't do this in onDemand. In the downloaded version, you could have done this from database.
https://confluence.atlassian.com/display/JIRA/How+to+Export+Users+to+CSV+from+JIRA
Jobin - thank you for the quick reply. Had a feeling that was the answer, but wanted to make sure.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the Jira User Export app for Jira Server. It is free to download and use: https://marketplace.atlassian.com/apps/1220535/jira-user-export?hosting=server&tab=overview
Regards
Lasse Langhorn
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, it works fine :)
Just a small question: Is there a way to give access to our restricted-jira-administrators to this app? Now they get an infinite redirect loop to the login page and back if they click on the add-on in the admin area.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jozsef and thanks,
I will take a look at it for the next release.
The next release will contain user login info in the export.
Regards
Lasse
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jozsef,
I have created a new release with a fix for the redirect and added user login details to the search and export.
Regards
Lasse
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Lasse,
thank you very much for the quick fix and for the added details.
The new version works really fine.
Best regards
Jozsef
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No problem.
Glad to help :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is great Lasse! Any plans to make this available for the Cloud version as well?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Joe,
Making a Cloud version is not in the pipeline at the moment.
But thanks for asking this question.
Regards
Lasse
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This add on is a HUGE time saver. I wish I would have found it a few years ago. Thanks @Lasse Langhorn!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks. The app is not that old. Made it in May this year but glad you like it.
Regards
Lasse
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.
I used to export users from the database,
this is really a great thing!
Regards!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ugly hack: find inactive users in JIRA by processing the HTML from the UserBrowser page.
Browse to the JIRA Users page, select All from Users per Page, add
?max=10000 to the URL and save the HTML only to the local file
user.html then parse it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Better Excel Plugin does produce a customizable Excel file from the JIRA user accounts!
Tutorial: http://www.midori-global.com/products/jira-better-excel-plugin/documentation/user-export
(Please note that this is only applicable to JIRA Server at the moment, but we are already working on the JIRA Cloud version.)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's bizarre that you can't export a user list from the Administration interface. I have added a request for this, please vote for it: https://jira.atlassian.com/browse/JRA-23783
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are on server edition then the Active User Filter add-on (https://marketplace.atlassian.com/plugins/cr.tin.ActiveUserFilter.active-user-filter/server/overview) allows you to export users to CSV.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Quick way. Left click on the UI table, go to web inspector, click the table element, then edit HTML, then copy and paste the table HTML code into excel. It will reformat it into columns/rows of a valid table. Then you can export however you want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JIRA Command Line Interface (CLI) has the getUserList action that produces a CSV file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the REST API to retrieve a list of users. You your favorite scripting language that has a web client interface.
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.