Filter which remove tasks that are in a special epic

Tadeus Ratzfatz May 11, 2021

Hi,

i use this board filter: project = projectname AND component in (a,b,c,)

Now I want to use a board filter which contains all task from the filter above but i should remove all tasks which are linked to a certain epic.

I tried this filter:

project = projectname AND component in (a,b,c,) AND "Epic Link" != "epicname123"

 

But the result is that all tasks are removed which are not i any epic.

 

How can I solve it?

 

thank you in advance

1 answer

0 votes
Prince Nyeche
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 11, 2021

You need to use grouping in your JQL, try below query.

(project = projectname AND component in (a,b,c)) AND ("Epic Link" != "epicname123")

Suggest an answer

Log in or Sign up to answer