Forums

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

Issue not resolved after 180 days

salman.khan1 October 12, 2022

Hi,

 

I want to create a filter to be used in dashboard for identifying the issues that were created over 180 days ago and are still unresolved. I can do rest of the query need help with the 180 days part

2 answers

1 accepted

3 votes
Answer accepted
carlosughini
Community Champion
October 12, 2022

Hello Salman,

Hope you have been fine.

I would use a JQL similar to what Trudy mentioned, but with a small change related to the resolution so we can search for tickets that don't have a value in the resolution field:

created < startofday(-180d) and resolution is EMPTY

I also recommend checking the pretty good documentation below to understand more about resolutions:

Please give it a try and let me know how it goes.

Kind regards,

Carlos

0 votes
Trudy Claspill
Community Champion
October 12, 2022
created < startofday(-180d) and statusCategory!=Done
Florian Bonniec
Community Champion
October 12, 2022

I would use resolution is empty instead statusCategory!=Done

Some times with status are used in may WF and the status catagory is not "right" so resolution seems more accurate.

Suggest an answer

Log in or Sign up to answer