You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Can you report on resolved date? I would like to see what was resolved last month for example.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.