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.
This JQL query also works:
sprint = [open_sprint_id] and sprint != [closed_sprint_id] and status != Done
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')
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.