Need JQL to get Jira tickets which did not move to a specific status within 24h after creation time
Need to all tickets which did not change status to "ready for review" within 24 hours.
Hi @Heba Rezk and thanks for your question.
In addition @Sanjen Bariki , you can try this JQL;
status WAS NOT "ready for review" DURING (-1d, now()) and created <= -1d
Hope this helps,
Murat Seven
Hi @Heba Rezk ,
Welcome to atlassian community!
Please find the answer inline below.
project = "ABC" AND status != Done AND updated > "-24h" AND created = updated
2. Need to all tickets which did not change status to "ready for review" within 24 hours.
project = "ABC" AND status != ready for review AND updated > "-24h"
You might be face some issue in the 1 JQL answer If you faced then Can you please let me know, Is there created date like with 1 week or month then it will find out JQL easy.
Regards,
Sanjen
Please accept the answer If it helps you😊
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.
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.