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.
FYI: typo - stastus not in (Closed, Verified))
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.
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.