Hi All,
for a specific project, i wanted to track the "no of cases status changed to xxx" vs "no of cases status changed to yyy" "no of cases status changed to zzz" for the day frequency to look at week end/month end.
IS there any way i can achieve this ?
Hello @Junaid Moosa 👋
As an alternative , I guess you can try Time in Status for Jira Cloud (developed by my SaaSJet team) with 7 types of status time reports.
For your exactly need we have Status Count report or Transition Count report
The Status Count report shows how many times an issue has been in each status.
Chart view of report:
The Transition Count report shows how many times an issue has moved between all statuses in the workflow.
Chart view of report:
Add-on has a 30-day free trial version and free up to 10 users.
Please, let me know if you have any questions
Hope it helps 😌
Valeriia
Hello @Junaid Moosa
This is a really tough one to get.
To start things small, you can use a JQL query like below to get the list of issues for a single day (or let's say a single time period):
project = ABC and status changed FROM Open TO Resolved AFTER '2023-08-01 00:00' BEFORE '2023-08-02 00:00'
But getting this as a day-resolution report for, let's say, the last 30 days? I need to be honest, I don't know any built-in reports or marketplace apps that can give you this report.
EmreT