Needing JQL query to see number of tickets opened and closed in the same day.

Aaron Johnson September 9, 2019

I'm having a difficult time finding a way to identify tickets in the past 30 days and identifying which ones were opened and closed during the same calendar day.

 

Any assistance would be great!

So far I have the below query:

project = "xyz" AND status changed from "waiting for support" to Resolved AND created <= -30d

But the above does not identify the time between status change.

1 answer

1 accepted

0 votes
Answer accepted
Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 9, 2019

note you could simply use the Created vs. Resolved gadget on a dashboard for this. With that said try this JQL...

createdDate >= startOfDay() and resolutiondate <= endOfDay()

save the filter as something like "same day closures" then use that filter in a gadget on a dashboard.

Aaron Johnson September 9, 2019

Thank you very much.

Like Mahesh Kallepalli likes this

Suggest an answer

Log in or Sign up to answer