You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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
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.
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.
Atlassian's marketplace partners have had a very productive start to 2021! Since our last roundup, our developer community has added over 160 new cloud apps to the Atlassian Marketplace to help you...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.