Hello,
My name is Marè, and I am building a dashboard that shows an overview of overdue Jira issues for a daily report.
On top of "Two dimensional Filter Statistics" and "Filter Results" gadgets, I would like to show a total count of tickets closed today and that were still open yesterday.
The original JQL that gives me the list of overdue tickets is:
filter = XXXXXX AND "Target End" <= endOfDay() AND NOT (status in (Resolved, Closed) OR status = "In Review" AND labels = XXX_Ready_for_Test)
Yesterday, that JQL was showing 48 overdue tickets, and now the open tickets are down to 20. How can I show that 28 were closed between yesterday and today? Also, would it be possible to select a specific time of the day as well (let's say from 10AM yesterday until 10AM today)?
Thank you!