Hello,
i wanted to filter for issues which are not Bugs and not Tasks. Additionally these issues should not have the component !=WS10. However, tasks and bugs are still shown in backlog if i filter:
My query: issuetype != Task or issuetype != Bug and component != "WS10 Arbeitsvorrat"
I also tried:
issuetype = "Change Request" or issuetype = Story AND component != "WS10 Arbeitsvorrat" or component is EMPTY, but then some stories disappear where component is None.
Maybe the solution is somewhere inbetween my two queries. Thanks for your help!
Hi @[deleted],
Welcome to Atlassian Community!
Try this JQL:
issuetype in ("Change Request", Story) AND (component != "WS10 Arbeitsvorrat" or component is EMPTY)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @[deleted] ,
You tried issuetype != Task or issuetype != Bug and component != "WS10 Arbeitsvorrat
That is the same as
issuetype != Task or ( issuetype != Bug and component != "WS10 Arbeitsvorrat)
So it will select everything that is not a task and all bugs with that component.
If I got you right, you want no Task, no Bug and no other issues with that component.
I think this should do
issuetype != Task and issuetype != Bug and component != "WS10 Arbeitsvorrat
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This solution doesnt work for me, because issues with component "none" are filtered out. With the solution of Mikael it worked though.
But thanks for your help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I missed the is empty part
issuetype != Task and issuetype != Bug and (component != "WS10 Arbeitsvorrat or component is empty)
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.