Yes, you can create filter for the resolved date. Here is an example that would give you all resolved issues within the past 30 days:
"Resolved At" >= -30d
To get all resolved issues from last month you can use this JQL:
"Resolved At" >= startOfMonth(-1) AND "Resolved At" <= endOfMonth(-1)
Hello @Stefanie Sullivan
I'm not sure if I understand your question, but if you want to know the number of issues resolved in the last month, use this:
resolved >= startOfMonth(-1) AND resolved <= endOfMonth(-1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
is there any way to align resolution date to sprint start and end dates?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could, but you would have to use rest api to get the start date and end date of the sprint, that is not something that is exposed to JQL, it can only search on closedSprints() and openSprints().
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.