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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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!
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.