Hey everyone, hoping some JQL experts can help me out.
We are trying to figure out a quick filter that will filter out/hide the standard issue type tickets (Stories, Spikes, etc.) that are DONE in our active sprint view BUT still see all statuses of sub-tasks for tickets still in flight.
Another way to describe this is when walking the board, we want to focus on tickets “In Progress or To Do” and filter out the ones that are “Done” so we don’t have to see them. (cleaner view of what work is remaining in the sprint)For any ticket that is still “In Progress” we want to see all statuses of the subtasks, including “Done” so we have the full picture of what’s been done and what remains.So I am hoping to write it as “hide all tickets marked as ‘Done’ EXCEPT when issuetype=sub-task”
Any filter we've tried so far hides completed sub-tasks for in-flight issues.
Does anyone know of a way to wire this up correctly so we only filter out Done standard issue types and Done sub-tasks (if their parent story is done as well)?
Thanks in advance!
Hi @Jordan Trinklein and welcome to the Community!
If I understand your use case correctly, try the following:
(issuetype in standardIssueTypes() AND statusCategory != done) OR
(issuetype in subTaskIssueTypes())
Hope this helps!
Hi @Walter Buggenhout! Thanks so much for the welcome and the response.
That did get me closer. In the image I attached, when I activated that quick filter you provided, it hid test story 3, but it didn't hide test story 4, which should be hidden since all the sub-tasks are in Done.
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.