Hello,
Im trying to query issues having specific status as of a certain day e.g. I would like to know how many issues were fixed yesterday by checking issues transitioned from status A to status B, yesterday. I'm using following query:
issuetype = Bug AND status changed FROM "In Development" to "DEV COMPLETE" and (updatedDate < -1d AND updatedDate > -2d)
But this query shows me all the issues that were updated yesterday which once had a status of "In Development". I need to know issues that were changed from status of "In Development" to "DEV COMPLETE", yesterday. The issues may be in a different status now.
Any help is appreciated.
Try this one
(status changed FROM "In Development" TO "DEV COMPLETE" AFTER endOfDay(-2)) and (status changed FROM "In Development" TO "DEV COMPLETE" BEFORE endOfDay(-1))
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.