You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi @[deleted] -- Welcome to the Atlassian Community!
I believe this will do what you ask. Please substitute your project and status names.
project = myProject AND status = myStatus AND NOT status CHANGED AFTER -30d
And, please look here for more information about advanced JQL searching:
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jennifer, I am glad to hear that helped you!
And as an FYI, we use quick filters like this to help our teams using company-managed projects (classic) who have a lot of work in progress (WIP). Checking during the stand-up for things that haven't moved in a while can help start useful discussions. Such as: NOT CHANGED AFTER -3d
__Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Praise you, Bill. This worked finally. Not sure why this is so hard and everything is only made easier by a plug-in. Some of us can't get project funding for plug-ins. This is great.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello All,
This is good , my question is can I perform the same query for issues which have stalled in the same status (for a certain amount of time) at some point in time? so it does not necessarily need to be in "that" status as of now.
Any suggestions? Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Mostly, in a few ways...You can do is check if the status did not change DURING a window of time:
project = myProjectName AND NOT status CHANGED DURING (date1, date2)
You could also use the AFTER or BEFORE operators, if those would better match your needs.
You may also use the relative date functions, such as startOfYear(), in place of date1 and date2: https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/
Kind regards,
Bill
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.
Hi @[deleted]
Tell us how you want to do the query with what data, even with false information to help you, maybe something like this
Issuetype = "HU" and status = XXX and createddate >= 30
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That doesnt seem to work- I need to pull all stories, bugs, etc. in a project that have been in the "UAT" column for greater than 30 days
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.