You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am trying to filter for Bugs that were Resolved (marked as Done) after their Due Date. Is there a JQL query for this
project = "myproject" AND issuetype = bug AND status = Done AND duedate < resolved ORDER BY issuekey ASC
Hi @Tony Giovenali and welcome to the community,
Unfortunately, you can't compare fields within the JQL.
What you can do, outside the box, is to use a JQL from an automation rule and compare the date field you want to another's date field smart value. E.g.:
project = "myproject" AND issuetype = bug AND status = Done AND duedate < {{issue.fields.resolved}}
The above can be accomplished, but as I mentioned only within an automation rule.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.