Need a filter that shows all outstanding issues in a particular sprint.
Hi @Evalaji Jones,
The following should do the trick:
Sprint = <your sprint> AND resolution = unresolved
Hope this helps!
Thanks, is there any option for open sprints so I do not always have to amend the filter to the most current sprint?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I kinda felt that one coming 😉
Sprint in OpenSprints() and resolution = unresolved
That would retrieve all open sprints across all boards in Jira. So if you want to refine further, you may want to add an additional restriction on the projects you want to include in your search:
Project in (ProjectA, ProjectB, ProjectC) AND Sprint in OpenSprints()
and resolution = unresolved
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.
Hi @Evalaji Jones
You can also try :
Sprint in OpenSprints()AND status != Closed
Regards,
Sushant Verma
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.