I need to find as how many stories got moved to Ready for planning from backlog post 15th Jan 2024 as those stories right now must be in different statues like in progress or ready for testing etc. Does JIRA stores any historical data .
Hello @Kalpesh.Bohra
Welcome to the Atlassian Community.
Unfortunately the query provide to you by @Aswin Raj D will not get you a list of issues changed to the Ready for Planning status after the specified date. That query will give you a list of issue that are currently set to that status.
Instead you need to use a query like this
Status CHANGED TO "Ready for Planning" AFTER "2024/01/15".
(The date format may need to be different depending on your system configuration.)
That will give you a list of the issues changed to that status after that date, regardless of the current Status to which the issue is assigned.
You can find more information about the CHANGED operator here:
https://support.atlassian.com/jira-software-cloud/docs/jql-operators/
Hello @Kalpesh.Bohra ,
In JIRA, you can use the issue history and the JQL (JIRA Query Language) to find information about when stories were moved from backlog to "Ready for Planning" after a specific date. JIRA does store historical data, and you can use this information to track the changes made to issues over time.
Go to the JIRA issue search bar.
Enter a JQL query to filter the issues you're interested in. For example, to find issues that were moved to "Ready for Planning" after January 15, 2024, you can use a query like:
project = "Your Project" AND issuetype = Story AND status = "Ready for Planning" AND updated >= "2024-01-15"
Make sure to replace "Your Project" with the actual name of your project.
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.