I want a query for "list all issues that progressed from Open to In Progress during this time period"
here's the trick: I need to know who was the assignee during that progression (in this case, it was Belinda... I don't need to know about Amy or Candice)
Or, is there another approach that I am missing?
Thank you for your assistance
To find issues with a specific status change in a time period, you can do JQL like:
status changed FROM "Open" to "In Progress" DURING ("2016/11/12 14:00","2016/11/16 14:00")
You can also query based on who made this change, but I don't think that is quite what you are asking:
status changed FROM "Open" to "In Progress" by Belinda DURING ("2016/11/12 14:00","2016/11/16 14:00")
Might get you started at least.
Sam
p.s. I'm assuming you are wanting to look at many issues, so it's impractical just to look at the "History" or "Activity" tabs on the issue(s)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
correct. we have some 3000 issues a week, and trying to run reports to capture data about the production. I believe the "by belinda" method above might get me a lot closer - much appreciated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello - I have a similar need. Assignee changes depending on the status. I want to run a report that pulls who the assignee WAS when the issue was in "Code Review" status. Is this possible? I don't want to know current assignee, or initial assignee - but specifically, the assignee at the time the issue was in the Code Review status.
This works, if I run the report for each individual working on this project, but I want a report that tells me the assignee during the specific status, so I don't have to run this report for each individual:
project in (MDO, MFE, CET) AND status changed from "Code Review" after startOfDay(-7d) by insertassigneehere
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.