I would like to create a "filtered results" gadget on a dashboard that displays the date when an issue was moved into a status.
For example, it would preferably look like:
Issue Key | To Do | In Progress | Done
XYZ-1 | 2021-11-01 | 2021-11-02 | 2021-11-03
XYZ-2 | 2021-11-01 | 2021-11-05 | 2021-11-09
XYZ-2 | 2021-11-02 | 2021-11-04 | 2021-11-05
Is there a way to do this without automation updating a date field when an issue transitions? I would like to have this gadget for over a dozen projects where historical data is essential.
This can be done in JQL on Jira cloud so long as you're not using a next gen project.
Do something like this:
project = "PROJ" AND status changed to Done during ("2023-04-01", "2023-07-01")
Look for the changed operator on the following link. I think its what you are looking for
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately, JQL can't be implemented in this case.
If you're comfortable with solutions from the Marketplace, check out Time in Status for Jira Cloud app developed by my team. You can get the date when an issue moved into a particular status with the Status Entrance Date report. It looks like this:
Let me know if it helps or if you have any questions.
Kind regards,
Yuliia
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Reid Bourgeois ,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you would be interested in a ready made solution to view the status transition dates, you can try out our app
The add-on provides the time in each status for the entire lifecycle of the issue and you can filter by issue type as well. You can also combine your statuses to define your lead/cycle/resolution time and also extract the transitions history of the issues. The main features of the app are as below
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Reid Bourgeois The status changes are stored in Jira but there is not a way in JQL to get them out in the format you are asking for. You would really need a more robust data reporting app like EazyBI to compile a report with that information.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the mention @Brant Schroeder !
Yes, eazyBI offers an issue change history analysis where it is possible to see when the first or last transition to the status happened and how many days the issue has spent in status.
Here are two reports from the eazyBI demo account where you can see:
Status changes for issues in progress
https://eazybi.com/accounts/1000/cubes/Issues/reports/144357-status-changes-for-issues-in-progress
Issue days in selected status:
https://eazybi.com/accounts/1000/cubes/Issues/reports/787692-issue-days-in-selected-status-updated
Gerda // support@eazyBI.com
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.