Forums

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

Separating our JIRA Kanban Boards

brian perkins
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!
December 30, 2020

I have a question on separating our JIRA Boards. Please see below.

Data Management Kanban Board

project = WFDM4 ORDER BY cf[10005] ASC
352 Issues

Data Landscape Kanban Board

project = WFDM4 AND labels in (dl_board) ORDER BY priority DESC, updated DESC
1 Issues

How can I edit the JQL for Data Management Kanban Board to separate the JIRA Kanban Boards?
Attempt:

project = WFDM4 AND labels not in (dl_board) ORDER BY priority DESC, updated DESC
259 Issues


There seem to be some missing issues in the new JQL since it is only returning 259 Issues. I would like these Kanban Boards to be completely separate.

 

2 answers

1 accepted

2 votes
Answer accepted
Guilhem Dupuy
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.
December 30, 2020

Hello @brian perkins

My guess here would be that the missing issues are the one with no label. To include them you should add a JQL like the following one :

project = WFDM4 AND labels is not EMPTY

 

Let me know if it helped,

Guilhem

brian perkins
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!
December 30, 2020

Yes this worked:

project = WFDM4 AND (labels not in (dl_board) OR labels is empty) ORDER BY priority DESC, updated DESC

Like • Guilhem Dupuy likes this
Guilhem Dupuy
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.
January 4, 2021

Nice to hear !

0 votes
Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 30, 2020

@brian perkins 

Welcome to the community.

As Guilhem said, you are likely missing issues where the Labels field is empty.

Do you use any other values in Labels besides dl_board? If you do use other values in Labels, and you want issues with those other values or with no Labels values in your Management board, then you would need something like this:

project = WFDM4 and (labels is not empty or labels not in (dl_board))

Suggest an answer

Log in or Sign up to answer