Our JIRA board consists of several future sprints (Current active sprint + 4 future sprints). I would like to create a table in our wiki which lists all issues of each future sprint separately. At the moment my query for future sprints is more like hardcoded in terms of [sprint = "Sprint 12"], [sprint = "Sprint 13"] etc. So after a few weeks its not up to date and needs to be adapted.
Therefore i need a dynamic query like CurrentSprint () + 1, CurrentSprint () + 2 etc. Is it possible?
Thanks a lot.
If you use this query it will show all tickets in future sprints
project = <projectname> AND sprint in futureSprints()
This gives all tickets for all future sprints. To know which sprints the results are in, I add a column in the results table to show which sprint it is and sort by sprint. Hope that helps
Was this solved in any manner :) ? The Sprint | Sprint +1 | Sprint +2 | ... Overview?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = <projectname> AND sprint in futureSprints() works really well however shows all the following sprints. I just want to see whats coming in the Next Sprint.
I'd also like to see something like; sprint in futureSprints() +1
Is that possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think the issue is more about what is characterized as 'next' sprint. JIRA wouldn't know what you vs I consider our next sprint unless we say all sprints in logical order are the order of sprint sequences.
If that is the case then you could add an ORDER BY rank clause after your query project = <projectname> AND sprint in futureSprints()
@Jonas Linder will this option ^^ help?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for this @Amie Fudge. It makes sense, it is the case that the sprints are in logical order and thats what I want to display.
Closest I got was with ORDER BY rank was; project = <projectname> and sprint in futureSprints() ORDER BY Sprint ASC
However this still includes other sprints, so its not exclusive to one.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Amie Fudge: Thanks. Our sprints are in logical order as well but my intention was to create something like an overview-table in wiki to plan all future sprints. Therefor i would like to fill each column with one future sprint (column 1 = future sprint 1, column 2 = future sprint 2 and so on).
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.
Its a duplication but with additional information and the dependences are better visible if the future sprints are arranged side by side than among each other. Or maybe there is another view of the backlog i know?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could also do this in portfolio plugin from Atlassian.
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.