Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

When I exclude a label in a Kanban board filter, the EPICs disappear

Tony
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 3, 2019

I am trying to exclude some tasks from one kanban board, so that I can have them showing on a separate board within the same project. However, my filter is removing ALL epics, which means they disappear from backlog view.

I have tried two options, excluding by EPIC LINK and excluding by using a label. The latter JQL is below:

project = DW AND issuetype in (standardIssueTypes(), subTaskIssueTypes(), Bug, Epic, Story, Task, Sub-task) AND labels != LabelName AND (resolution = Unresolved OR resolved >= -3w) ORDER BY Rank ASC

If I remove the bold/underlined section, the epics return to the filter, but I don't achieve my goal.

Any idea's how I can remove a set of tasks/subtasks/epics from one board, without losing all other epics from the board filter?

1 comment

Comment

Log in or Sign up to comment
rahuldanwade
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 3, 2019

Hi Anthony,

Can you check if missing Epics have label field empty?

If yes may need to slightly modify your jql.

May use the following one

project = DW AND issuetype in (standardIssueTypes(), subTaskIssueTypes(), Bug, Epic, Story, Task, Sub-task) AND (labels != LabelName or labels is EMPTY) AND (resolution = Unresolved OR resolved >= -3w) ORDER BY Rank ASC

 

When an issue has no labels, it does not pass the test "label is not", because there's nothing to compare and if we miss this it can exclude the issue with empty label.

hope it will work!!

Thanks

Rahul

Like # people like this
Tony
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 3, 2019

Thanks Rahul, that worked! There's me assuming it would pass a Null to check... silly me!

TAGS
AUG Leaders

Atlassian Community Events