Hello all, how do I create a filter to show backlog items carried over from sprint to sprint?
Hi @Mister Femi
Does this work for you?
sprint in closedSprints() AND (Sprint in openSprints() OR Sprint in futureSprints())
^ This provides all Issues:
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mister Femi
Yes, this query is showing Issues which are in 2+ Sprints, where one is closed, and the other is active/planned.
You could customise it based on whatever other logic you need - for example if it's for Stories which are not closed/done, it might be:
issuetype = Story AND resolution is EMPTY AND sprint in closedSprints() AND (Sprint in openSprints() OR Sprint in futureSprints())
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Spot on @Ste Wright Exactly what I am looking for. Thank you so much. Final question, if we are looking for uncompleted stories, shouldn't it read AND RESOLUTION is EMPTY? Pls clarify. Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mister Femi
Yes it should - sorry about that!
I've updated my response above, thank you for letting me know it was incorrect.
Ste
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.