I have a project that shares a kanban board and a scrum board. Items that are in the In Progress status category in the Kanban board are visible in the Scrum board backlog. How do I setup a filter so that the Scrum backlog shows only items that are not in progress?
Hi Robert,
On Board Configuration > General > Saved Filter > Edit Filter Query
try something like :
project = <your project name> AND (status in (Backlog) OR Sprint is not EMPTY) ORDER BY Rank ASC
This way on all the board (both "backlog" and "Active Sprints", you'll only see items that are either in BACKLOG status or that belong to a sprint, no worries, items that are in closed sprints will not show up)
Try that and check if it works.
Best Regards,
What are the column setups and board filters for each board?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Kanban board:
category = "Equity Management" ORDER BY Rank ASC
Scrum board:
category = "Equity Management" AND ("Stakeholder Team" != Strategic OR "Stakeholder Team" is EMPTY) AND issuetype not in (hotfix, escalation) ORDER BY Rank ASC
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.