Using Jira Cloud, I want to see only Bugs and Subtasks on my Active Sprint board, but in Backlog view I want to see tasks as well.
Currently the filter on the Active Sprint board seems to affect both locations, is there away to split them? please
A plug-in is not an option sadly.
Hi @Sarah Jones ,
you can't split board filter. If you need just to view Bugs and Subtasks on your current sprint, my suggestion is to use a Board Quick Filter https://support.atlassian.com/jira-software-cloud/docs/configure-quick-filters/
This should help you.
Fabio
Hi @Sarah Jones
Please take a look on this JQL functions:
- futureSprints() - https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/#Advancedsearchingfunctionsreference-futureSprintsfutureSprints--
- openSprints() - https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/#Advancedsearchingfunctionsreference-openSprintsopenSprints--
- closedSprints() - https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/#Advancedsearchingfunctionsreference-closedSprintsclosedSprints--
And finding by using Sprint field:
- sprint=<SprintId> - https://confluence.atlassian.com/jirakb/jira-software-how-to-search-for-a-sprint-using-jql-779159065.html
To filter out stories from active sprint please use openSprints() function. To filter stories in Backlog you can use combination futureSprints() and sprint field.
Regards,
Seba
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.