Anyone can help with this ?
I know it is possible to make a filter based on status changed from X to Y .
but what I need to make is : a filter of issues that their status was not changed for long time ...
Community moderators have prevented the ability to post new answers.
You can use "NOT Status Changed AFTER" in your JQL query.
For example:
Project = X AND NOT Status Changed AFTER -10d
This would show issues where the status has not changed in the last 10 days. However, this would also show new issues created in this time. To remove these:
PROJECT = X AND NOT Status Changed AFTER -10d AND Created < -10d
Hi Pete , this worked but it included the close issues too ..
how about a filter that tells those issues with the status of X,Y,Z that status not changed for more than 10 days ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just add "AND Status in (X, Y, X)". Or alternatively "Status != Closed"
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.
@Pete Singleton I don't seem to be getting accurate results when trying these queries in Jira Cloud- is that expected
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.
this won't cover my requirement .. because I don't mind the target status .. all I care is those issues people missed to work on it
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.