Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

agile

jira

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

like image 742
Leonardo Avatar asked Oct 18 '22 04:10

Leonardo


1 Answers

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.

like image 156
GlennV Avatar answered Oct 27 '22 17:10

GlennV