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.
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
Yes this worked:
project = WFDM4 AND (labels not in (dl_board) OR labels is empty) ORDER BY priority DESC, updated DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nice to hear !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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))
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.