I have issues that expand across multiple sprints. I want to search for issues that only exist in certain sprints. Something like (pseudocode):
project = FOO AND sprint ONLY IN ("Sprint 44")
Is this possible? Thanks.
It is not possible from out-of-the-box jql function.
So I got here from Google and I wanted to share what works for me, if you only have 1 open sprint you could use:
status = Done and Sprint in openSprints() and Sprint not in closedSprints()
Will only show 'done' from the openSprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi!
Yes, it is possible
project= foo and sprint in (123)
Also, you can use functions https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-functions-reference-764478342.html
Cheers.
Gonchik Tsymzhitov
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried that approach and it will return issues outside of the selected sprint. For example:
project = foo AND sprint IN (123)
might return:
Key Status Sprint
Issue-123 DONE 122, 123, 124
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.
@Gonchik TsymzhitovPlace this statement in a separate answer and I'll mark it as the "solution". Thanks.
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.