Hi,
I'm trying to build a Jira filter that shows all tickets that have changed their status from to do to done within the last 7 days. While the first part is easy I just can't seem to figure out how to get the 7 day rule.
This is what I have:
project="name" AND status changed from "to do" to "done"
I believe this is rather easy but I'm just blocked....
This should work
project = "Name" and status changed FROM "to do" TO "Done" AFTER -7d
Here "-7d" means last 7 days.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
It would be something like this
status CHANGED FROM "In Progress" TO "Open" AFTER -7d
or to be more exact
status CHANGED FROM "In Progress" TO "Open" AFTER startOfDay(-7d)
startOfDay will let choose from 00:00 while -7d will depend on the time when you execute the query
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.