what issues did I transition from "open" to "in-progress"

LakshmiS July 24, 2016

I want to know issues I worked on, during a specific release.

My workflow is: Open-> In Progress-> Code Review-> QA-> Done

 

I want to know issues which I moved from the status "In progress" to "Code Review" only.(basically want to filter out issues which I did a code review for)

 

I am using JIRA cloud

5 answers

1 accepted

1 vote
Answer accepted
vitaliy zapolskyy
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.
July 24, 2016

Lakshmi, here is your JQL code:

Project = <projectkey> AND Status CHANGED FROM "In Progress" TO "Code Review" BY currentUser()

you may want to read more here: https://confluence.atlassian.com/jiracore/blog/2015/07/search-jira-like-a-boss-with-jql

LakshmiS July 25, 2016

Thanks Vitaliy - this works perfectly!

0 votes
Dražen Mijoč May 13, 2021

@vitaliy zapolsk1 Can you help regarding JQL code? I followed instructions and seem to be nota having that much luck. my JQL code looks like this:

Project = BSS AND Status CHANGED FROM "INTERNAL QA" TO "INTERNAL QC"

But it returns this: 

No issues were found to match your search

Do you have any proposal how to get some "matches"?

 

Thanks,

d.

0 votes
Galina Tymonina July 25, 2016

Lakshmi, try something like this:

project = PROJECT and issuetype = story and
(Status CHANGED FROM "In Progress" TO "Code Review" BY currentUser()) and
(assignee changed from currentUser() by currentUser() ) and
(status changed from OLDSTATUS to NEWSTATUS by currentUser())

You can also specify time, for example:

project = PROJECT and issuetype = story and
(Status CHANGED FROM "In Progress" TO "Code Review" BY currentUser())
and
(assignee changed from currentUser() by currentUser() )
and
(status changed from OLDSTATUS to NEWSTATUS by currentUser())

 
 

LakshmiS July 25, 2016

Thanks Galina for your response. Vitaliy's query is a subset of yours and also does the same thing, so I am inclined to take the shorter query smile

0 votes
Bharadwaj Jannu
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.
July 24, 2016

Lakshmi, if you have JQL search access in your JIRA cloud, you can use the following JQL:

status = "Code Review" and status was "In Progress"

 

Hope it helps!

LakshmiS July 24, 2016

Jannu, let me explain with the following example

a.Story A1 is in status 'In progress' and assigned to me

b.Story A2 was in status 'In progress' and assigned to me, which I completed and assigned to someone else for 'Code review'. A2 can be in any state now.

c. Story A3 was in status 'In progress' and assigned to someone else, but assigned to me now for 'Code review'

d. Story A4 was in status 'In progress' and assigned to someone else, but assigned to me for 'Code review' which I completed and assigned to QA

e. Story A5 was in status 'in progress' and assigned to someone else,  assigned to someone else for 'Code review' 

 

I only want to see A2

 

Your query would retrieve more results from what I understand.

0 votes
LakshmiS July 24, 2016

Seems similar to https://answers.atlassian.com/questions/39849  except that I want issues in a specific state only

Suggest an answer

Log in or Sign up to answer