Leonardo
Leonardo

Reputation: 11401

Jira - Get all issues that moved to "Done" on iteration X

How can i create a filter that captures all cards that moved to "Done" during iteration X?

Upvotes: 5

Views: 85

Answers (1)

GlennV
GlennV

Reputation: 3670

Something like this could work, if you're looking for issues in a certain sprint with a certain status:

project = MYPROJECT AND status = Closed and sprint in (mysprint)

Note that that can also include issues that were part of multiple sprints and closed in a later one than mysprint.

If you're really interested in the issues that were closed in a specific period, then use something like:

project = MYPROJECT AND status CHANGED TO closed DURING (2016-07-01, 2016-07-15)

The dates are in format YYYY-MM-DD.

There's a related question here. And more documentation available here.

Upvotes: 3

Related Questions