Issue Report: Status Changes

Karrie Dash April 27, 2017

I want to run a report that will be run every day that tells me which tickets went from 1) To Do to In Progress and 2) In Progress to In Review the day before, but will sort them by who the assignee was during the In Progress status.

1 answer

1 accepted

1 vote
Answer accepted
Alex Christensen
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 27, 2017

I don't know of a specific report to do this, but you can get this information via JQL:

status changed from "To Do" to "In Progress" on -1d AND status changed from "In Progress" to "In Review" on -1d ORDER BY assignee ASC

This query returns all issues which changed from To Do, In Progress, and In Review all in the same day. I can't tell if that's exactly what you need or if you need two separate lists, but hopefully this can get you started, at least.

Karrie Dash April 27, 2017

That works for me! Thank you!

Marcus Tezcan August 10, 2022

Hi,

Can anyone give me a bit more instructions on where and how I do this please?

I'm in Jira Cloud, Team Managed projects. Columns: Ready to Start, Blocked, In Progress, Ready For Review, Done

 

Thanks!

Suggest an answer

Log in or Sign up to answer