Objective: Total No of tickets resolved within 5 days
I am not able to do the following criteria JQL :
created date - updated date < 5 and status = resolved.
- Appreciate any other ideas that I can try.
Natively Jira can't do this kind of date comparison where you want to dynamically compare two different fields of each issue. There are other plugins for Jira that can help here. The one I am aware of that can do this is Scriptrunner, but I'm confident there are also other alternatives that can do this as well.
Specifically you can take a closer look at their expanded JQL functions such as dateCompare. With this plugin I suspect you could do something like this in Jira's JQL search:
issueFunction in dateCompare("", "created +5d > resolutionDate")
In turn I would expect this to return all issues that were resolved within 5 days of their creation. I hope this helps.
Andy
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.