Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Query

HaRsHaS_ V August 25, 2025

Can we write a JQL for  when a ticket in the release has no status update for 5 days.

3 answers

6 votes
Thorsten Letschert _Decadis AG_
Community Champion
August 26, 2025

Hey @HaRsHaS_ V

Depends on what you refer to as "status update".

A query like

fixVersion = x.x.x and updated <= -5d

returns issues from a specific that have not been updated throughout the last 5 days (no field or status change, comment, etc.).

If you're referring to actual status changes, a query like

fixVersion = x.x.x AND NOT status CHANGED AFTER -5d

Might do the trick.

Regards,
Thorsten

0 votes
Natalia_Kovalchuk_SaaSJet_
Community Champion
August 26, 2025

Hi @HaRsHaS_ V!

I propose that you try such a JQL query: 

fixVersion = latestReleasedVersion() AND status NOT IN (Done) and updated <= -5d

Using this JQL, you can retrieve a list of tickets in the latest released version that are not marked as Done and haven't had any updates (including any change to status, comment, or other fields) for at least 5 days. 

Here is also the article that may be helpful in similar cases: JQL Queries for Analyzing Team Performance in Jira

 

0 votes
Benjamin
Community Champion
August 25, 2025

Hi @HaRsHaS_ V ,

 

You can do something like this:

 

updated <= -5

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events