I want to filter the issues that changed in status during a period (typically last week).
eg. I want to see what issues have transitioned into a certain status in the last week.
For a statuscategory I can do that, using the date in "Statuscategory change date". But I want to have the same for different statuses withtin the statuscategory "open"
Is there anyway in doing that?
Hello @jeroen_wilmes
Yes, that may be possible with the CHANGED operator, using the DURING predicate.
https://support.atlassian.com/jira-software-cloud/docs/jql-operators/#CHANGED
status CHANGED DURING("2025/03/03","2025/03/10") and status in (<list of statuses>)
Or it might be possible with the WAS operator.
https://support.atlassian.com/jira-software-cloud/docs/jql-operators/#WAS
status WAS NOT IN (<list of "open" category statuses>) BEFORE "2025/03/03" and
status WAS IN (<list of "open" category statuses>) DURING ("2025/03/03","2025/03/10")
Test these options thoroughly. They may not give the exact results you are seeking.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.