JQL for querying issues that haven't had their status changed in more than 3 days

rsud January 23, 2015

I am looking to retrieve the issues who's status hasn't been changed in more than 3 days.

For those that haven't changed their status in the past 3 days, I am using

status changed to "Reopen" on (-0d,-1d,-2d,-3d)

2 answers

1 vote
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 23, 2015

Create a filter for issue whose status changed in the last 3 days.

status changed after -3d

Now, create another filter that excludes these issues.

filter != "Filter created above"

You can add more conditions in both cases.

0 votes
Shawn Odegaard April 7, 2016

Thanks to Jobin's answer, I was able to use the following which works without having to save a filter (I like sending filters are URL's to users).  The "created" part is needed to avoid displaying issues which were just created and the status hasn't ever changed yet.

not (status changed after -3d) and created < -3d and ...

Suggest an answer

Log in or Sign up to answer