Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL to find the assignee during a specific transition?

markmiddleton
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 15, 2016
We are trying to determine who the the developer that did the work on this specific issue
  1. Issue starts assigned to Amy with status of New
  2. issue progresses to Open with the assignee of Belinda
  3. Belinda progresses issue to In Progress (Assignee remains Belinda)
  4. Belinda finishes her work and assigns to Candice for QA

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

 



1 answer

0 votes
Sam Hall
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 15, 2016

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

Sam Hall
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 15, 2016

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

markmiddleton
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 15, 2016

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!

Like Steve V. likes this
Tiffany Lirones April 17, 2021

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

Suggest an answer

Log in or Sign up to answer