Good morning, I am teying to run a JQL that will filter all issues that were resolved afetr duedate
Hi @kaysaff.tal,
Unfortunately, Jira does not support this functionality out of the box. There is an issue open for this that you can watch or vote for: JRASERVER-20727
If you have scriptrunner in your instance, you can compare dates with a JQL query like this:
issueFunction in dateCompare("", "resolutionDate > dueDate")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great news, @kaysaff.tal. If this answer helped you, could you also accept it by clicking the Accept Answer button above? That way, it can also easier be found by community members having a similar question!
Thx!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Walter Buggenhout It is the same for Next Gen projects as well? Do we still need an external application?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use JIRA Automation as a workaround to find issues resolved after their due dates.
Setup an automation rule that is triggered when an issue is resolved, and have it automatically add a label of your choosing (we use "resolved-after-due-date") to the issue if the resolution date is after the due date.
Then you can simply query new issues by label to find issues resolved after their due date. If you wanted to backfill your existing issues with the new label, then you could adjust the trigger condition as needed.
Here's an example screenshot of this automation rule using the "Advanced compare condition".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.