Hi
I needed to know how I can make a JQL that brings me all the ticks that passed a certain status in a period x. Example: All tickets that went through the status in progress from 04/01/2022 to 04/30/2022.
@Yuri Cardoso da Silva , welcome to the Atlassian Community.
You may be able to extract this data using the following JQL:
status changed FROM "In Progress" DURING ("2022/04/01", "2022/04/30")
Jira will list all issues that have gone through "IN PROGRESS" status during this period. You can see more details in: https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-operators/#Advancedsearchingoperatorsreference-CHANGEDCHANGED
Hope this helps ;)
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.