I'm trying to find a more recent answer to the question of a system timestamp for when an issue is resolved (Done, Cancelled, etc) for Jira Cloud. Does anyone have a method to do this as I'd like to use that date in a filter. Thanks.
This can be done with the below JQL:
resolved = 2025-03-07
This will show all issues resolved on the 7th of March 2025.
Is this what you mean?
Thanks for the response. I'm looking for the date when an item transitioned to Done or Cancelled. I'm hoping there is a field that automatically captures this. If not, I'm going to just create an automation to do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My bad, you actually answered my question. Seems inclusion of Resolved and a time range of between X date and [blank] does this for me. Thanks for the response.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My bad, turns out this isn't always going to provide information. I'm not 100% sure why the field doesn't pupulate sometimes. In the meantime, I've just written an automation so that it puts the date when something moved into a resolved status and the value goes into a net new custom view-only field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Good practice is to set the Resolution field in the workflow any time the issue is transitioned into a terminal status such as: Done, or Cancelled.
The set resolution triggers some reports to know the issue is indeed done or cancelled.
The information of when the ticket is transitioned into a terminal status is captured in issue history. You can either manually search each issue, or extract the data using REST calls, which will return the data in JSON format that you later need to parse.
Or, if you are open to using apps, you can use Issue History Dashboard for Jira , an app released by our company.
Filter by Field Updated - Resolution.
Field Date of Change displays the date each issue was transitioned into the status that changed the resolution.
Regards,
Petru
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks. I've noted that the Resolution Field contains a date stampe for Jira Software but not for Jira Business. I'm looking into post function to see if that's a work around. My automation using a new custom field is providing the data that we need, but ideally this would all be in one field column and not 2 or 3.
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.