I want to hide a story and all its subtasks from view on my WIP kanban board that currently displays story level swimlanes.
I don't want to change the subtasks statuses if I don't have to.
Can someone provide the JQL for this filter?
Is this a specific singular story? Assuming so the following JQL snippet should be added to your current board filter.
… and issue != abc-123
replace abc-123 with the story key
No I need it to be dynamic.
i.e. if a story is on 'HOLD' also filter out all subtasks regardless of their status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok well that is important info. So if you’re saying you want all on hold stories to not show then consider this…
… and status != “on hold”
you might consider not changing the board filter but rather add a quick filter so you can hide on hold stories on demand.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Right so that was the initial approach, but what ends up happening is the subtasks get dropped down to the 'No Story on Board bucket'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Consider putting the sub-tasks on hold as well. You could use automation to automatically set them to on hold if the story goes on hold
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
On a Kanban, you lose a bit of information if you hide subtasks, so I will always tell you that you should not hide them by default.
But to get a vastly better display of the stories (which is always a good idea, because sub-tasks are often pointless noise to anyone who isn't the owner of the story), I usually offer a quick-filter of "issue-type not in subTaskIssueTypes()" to every board.
Frankly, I wish Atlassian offered that as a standard quick-filter on all boards, alongside the user ones.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi James,
I see some great workarounds proposed here but if you want JQL to support your workflow, you should consider using our app JQL Search Extensions.
To filter out subtasks and stories in your particular status, add this to your board filter:
parentStatus != "Your status" and status != "Your status"
Have a look at our docs for more info, and more JQL stuff.
Thanks,
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I wonder if by hiding the "on hold" work on a Kanban board, unintended consequences will be created:
Perhaps consider how to improve work selection so it is not put on hold once started, or decide if the issues should be "abandoned" when they are no longer needed/requested.
Best regards,
Bill
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.