I'm being asked to come up with a method to determine the number of issues that were resolved on or before their due date during a certain period of time.
The best I can come up is this:
project = TEST AND issuetype in standardIssueTypes() AND (resolved >= 2014-02-02 AND resolved <= 2014-02-08) AND (dueDate >= 2014-02-02 AND dueDate <= 2014-02-08)
If I have 42 issues resolved between those dates, it's showing me 9 issues that were due AND resolved during that same range; however, when manually looking through the data, I actually have only 6 issues that truly have a resolved date on or before the due date within the original 42 issues. The query seems to be showing me any ticket that was resolved in the same week it was due rather than resolved ON OR BEFORE it was due.
What kind of JQL query can I do to get the results I need?
Hello Ryan,
what are you really trying to do in your query is to compare resolution and dueDate saying that resolution <= dueDate and unfortunately JIRA does not support this comparison out of the box.
https://jira.atlassian.com/browse/JRA-20727
You could try to use Script Runner plugin Scripted JQL Functions https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-dateCompare(Subquery,datecomparisonexpression)
You will be able to perform queries like:
issueFunction in dateCompare("", "resolutionDate < dueDate +1w")
Marco
It turns out we already had Script Runner set up so I'm using that query, minus the +1w part, and it works perfectly for me. Thanks for the suggestion.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked for me as well, but I also wanted to emphasize the use of the sub-query section is critical for performance. It is mentioned briefly in the Scripted JQL Doc...
project = Test and assignee = bob and issueFunction in dateCompare(
""
,
"resolutionDate > dueDate"
)
VS
issueFunction in dateCompare("project = Test and assignee = bob", "resolutionDate > dueDate")
Building a dateCompare in to a Smart Filter (Rich filters) I had to add the whole base query into it, to prevent it from timing out.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ryan,
Can i suggest :
https://marketplace.atlassian.com/plugins/pt.lt.lfcribeiro.jira.jqlLTFunctions
Thers a function "ExecuteQuery()" that lets you run a SQL statement.
Regards,
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.