Hello guys!
I am working on a new automation but having trouble getting my filter to pull back the details I need. I am looking to create a filter to show all issues that have been in the status "With User" for at least 3 days.
This is the closest I could get, but this is not really what I need because the updatedDate on all these issues are showing today:
project = myColorado AND status = "With User" And updatedDate <= now() order by created DESC
Any idea how I can do a filter based on how long an Issue has been in a certain status? Or maybe even a filter based on the updated date + 3?
My automation is going to auto transition issues that have been in the With User Status for at least 3 days to resolved.
Any help would be greatly appreciated!
You want something like this:
project = myColorado AND status changed to "With User" before -3d AND status was not "ANOTHERSTATUS" after -3d AND status = "With User"
This will look for anything that has legitimately stayed in "With User" status for at least 3 days straight. Meaning... It never transitioned to another status and back. If this interests you, just replace "ANOTHERSTATUS" with whatever status With User may have transitioned to. If not, simply remove the status was not clause
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.