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've got a filter set up designed to show bugs that have been in the same status for greater than 14 days.
issuetype in (Defect) AND priority = 2 AND status in (Blocked, "Cannot Reproduce", "Code Review", "In Progress", "In Review", "Need More Information", "Ready For Dev", "Ready For Testing", "To Do", Triage) AND NOT status CHANGED AFTER -14d order by created DESC
However bugs that have been recently created (made less than 14 days ago) and are in Triage show up in this filter. Why is this?
Hello @Alastair Richard Lavery
Welcome to the Atlassian community.
I don't know exactly what is happening on the back end in this case, because I am not a developer of the product, but the simple fix is to add a clause to exclude issue created in the past 14 days.
AND created < -14d
That works, thanks!
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.