Select only one sprint

jamie tannenbaum February 3, 2020

When I run a report how to do i limit the records to see records for a certain sprint.

 

For example if I had an issue that was carried over from Sprint 1 to Sprint 2, what is the query to see jira items that were created in  Sprint 2, and not carried over from Sprint 1.

2 answers

0 votes
Barrett Olafson March 21, 2022

This JQL query also works:

sprint = [open_sprint_id] and sprint != [closed_sprint_id] and status != Done

0 votes
Fernando Bordallo
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
February 3, 2020

Hello @jamie tannenbaum ,

You can create a JQL filter for this in two ways:

- IF the sprint you are looking into is not closed yet, you can search for `sprint not in closedSprints() AND sprint in currentSprint()`

or

- `createdDate >= "xx/xx/xx" AND sprint in ('X Sprint')

Suggest an answer

Log in or Sign up to answer