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)
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.
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 ...
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.