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.
Hi,
Apologies if this was somehow answered somewhere.
Could you please help me extract a list of issues from the past? i.e. A full snapshot of a list of all issues on a given particular day. If the full list is not possible then at least I would like to know the count of issues
For example, I want to know all the bugs that are still outstanding (i,e, not closed) on last year October 23
Many Thanks in Advance
Dinesh
Hello @Dinesh
You can achieve this with a JQL filter. You would have to set the created date less than the date you are interested in and the resolved date greater than the same date. You can then add more filter parameters, such as issue type and such.
For example:
project = TEST AND issuetype = BUG AND createdDate < "2019-12-12 AND resolved > "2019-12-13"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Thomas, Unless im missing something this doesnt help. The above query basically is giving me full list of issues including closed ones as of today. (I guess it doesnt even consider the date above)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you're right. There's one thing missing:
status was not in (closed) on "2019/10/23" and created <= "2019/10/23"
The first JQL returned also issues which were created after the given date.
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.