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 want to be able to filter out closed and verified status on only bugs. this is my current filter.
You probably want to add a clause for
and not (issuetype = Bug and status = verified)
The brackets here are critical, if you miss them when adding that to your query, it won't do what you expect.
I think I'd probably start with:
You need to use OR in your query. It should looks something like this:
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.
Try something like this:
project = XXXX AND ((issuetype in (Epic, Task, "Bug (Sub-Task)", Sub-task) OR (issuetype = Bug AND status not in (Closed, Verified)) ) AND "TYP: Team[Dropdown]" = "XXXXXX" ORDER BY Priority DESC
If I got the idea right
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
FYI: typo - stastus not in (Closed, Verified)) - (sorry meant for above reply)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks guys got the bracket thing now :) thats how you do the link.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are always welcome!
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.