How can i create a filter in JQL that will filter tasks that were resolved in the Last Sprint only? The sprint has 1 week duration
Hi @Eleni Zaggana and welcome to the Community!
Assuming that you have a sprint running each week, that suggests that you want to know the issues that were resolved last week and are in a closed sprint.
If those assumptions are right, you could do something like this:
Project in (<projects in your sprint board>) AND Sprint in closedSprints() AND
resolved >= startOfWeek(-1) AND resolved <= endOfWeek(-1)
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.