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.
Hello all
I am trying to create a filter that shows created within a particular month but also resolved within that same month regardless of created date. Meaning unlike widget which shows only issues created and resolved within same month, I am trying to filter on created (for example) this month and resolved this month regardless of when created. And trying to calculate these two sets of numbers going back 3 months.
Is this possible?
I kind of have this working for one month but only for resolved count, but I'm trying to pull counts going back to 10/1/21 that i can graph by month, for both created and resolved.
Here's what I use for one month:
project = ACME AND resolutiondate >= 2022-01-01 AND resolutiondate <= 2022-01-31 AND NOT resolution in (Unresolved) ORDER BY created DESC
Thanks so very kindly for any suggestions.
I don't quite understand the question, but here's the explanation
If you need to ignore created month leave out that in JQL
Now on including specific month
(Created >= 1/1/2022 AND Created<= 1/2/2022) AND resolution NOT EMPTY
the above JQL Query will list the issues thate created this month which are resolved
You could search this for every month changing the date
Let me know if there are any further queries
Thanks,
Pramodh
FYI For resolved
(resolved >= 2022-01-01 AND resolved <= 2022-01-31) order by created Desc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Pramodh, thanks so very much for your suggestions! I am trying to do the above jql for a 3 month period, including created each month but resolved same months regardless of the created date, but not just changing the date. I'll continue to monkey with it. I may only be able to do it month-by-month.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found the chart --Recently Created Chart-- to do exactly this. Set up your filter to your desired requirement. For example, show all issues created for a specific issue type for a particular project. Then, set up the chart to look at for example last 365 days and group monthly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, this sounds good, can you please decipher this in more detail? For example, you found the chart? Where?
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.
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.