JQL for closed date vs created date

Dawn Cooper June 8, 2017

I want to query a date for when tickets are closed. Same way i can query created date. How do I do this without there being an actual field to populate on a ticket?

1 answer

1 accepted

3 votes
Answer accepted
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 8, 2017

Hi Dawn,

There is a resolutiondate you can query against that holds the time stamp from when the ticket was resolved.  It can be used in the same manner as the createdDate query.

For instance I have four issues and none are resolved except one.  I used the following to find the one that is resolved:

resolutiondate <  "2017-06-09"


Hopefully that helps!

Cheers,

Branden

Willy Wijaya January 5, 2022

Hi Dawn,

For your case, maybe you can try using this query :

project = PROJECT_NAME AND issuetype = "Service Request" AND status changed to Closed after startOfMonth() AND status changed to Closed before endOfMonth()


Best Regards,

Willy Wijaya

Like # people like this

Suggest an answer

Log in or Sign up to answer