How can i create a filter that captures all cards that moved to "Done" during iteration X?
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With