Does someone know JQL that will display the date a story went to "InProgress"? I can't find a field with that data but JIRA must have one because the Control Report shows how many days an item was "In Progress". We are using a Kanban board.
JQL is useful for retrieving issues that match certain conditions.
JQL cannot get anything else than issues, and all you will be able to display is their fields.
The date a story went into a status is displayed in the issue detail view, into the History tab.
While the issue's history of changes cannot be displayed in a column, you can retrieve issues that have ever changed to the "In Progress" status in a time frame, as the Status field supports the operators:
In example, you can get the list of issues that have been transitioned to In Progress since the beginning of the current week until yesterday:
status changed TO "In Progress" BEFORE startOfDay() AFTER startOfWeek()
Hope it helps.
Hello Marty,
JQL is meant for searching across issues based on criteria which is simply value of issue fields like project, type, resolution etc So what you want isn't possible as the transition date is part of the history of the issue which isn't displayed on issue fields on the view issue scree,
The easy way to actually do this is to add a "Scripted field"(Script runner plugin) on the view issue screen of the issue and this field should calculate and display the date the issue transitioned to "In progress" status.
Now, every search result using JQL gives the option of customizing the columns of the issues in search result, thus now you can add this new "scripted field" as a column in the search result. Hence, you will be able to easily see the date the issue moved into "InProgress"
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.
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.