Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,451
Community Members
 
Community Events
184
Community Groups

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

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.
Jul 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

Thanks Vitaliy - this works perfectly!

@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.

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

 
 

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.
Jul 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!

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.

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
TAGS
AUG Leaders

Atlassian Community Events