I want to find out any JIRA issues that the status has not being changed for more than a week. I tried below but it crashed my Kanban board with timeout issue
status="In Progress" AND not status changed after -1w
Try just doing the following
not status changed -1w
project=XXX AND not updated >= -7d and status not in(Accepted,Discarded,Deleted,Deployed)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could try this JQL:
status="In Progress" and NOT status changed BEFORE 1w
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am using Jira v6.3.12 but this JQL doesn't work. If I use this query in my Kanban board, it even timeout the whole board.
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.