I need to know how many bugs we created vs. how many of them was resolved in specified time. In other words - how can I create a created vs. resolved report filtered by issue type (bug/task/etc)?
So I don’t understand why C vs. R gadget wouldn’t work if you create the right filter. If you want the gadget to reflect issues created since the beginning of the year...
project in (a,b,c) and createddate >= startofyear()
maybe your requirements are more complex than this?
I know that I can set filter on a project, but I want a Bug (issue type) and I can't see this kind of filter in that report.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project in (a,b,c) and createddate >= startofyear() and issuetype = bug
doesn't that give you what you want?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is very useful, as I have just been asked the same question by our support team so I will try this and report back. Many Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Małgorzata Kowalczewska ,
Created vs Resolved charts can be used to show the difference between the number of issues created versus the number of issues resolved over time.
BTW, you can use filters to classify and count the Issuetypes.
https://support.atlassian.com/confluence-cloud/docs/insert-the-jira-chart-macro/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ollie Guan ,
Thanks for your answer, however, it doesn't solve my problem. I know how the report Created vs. Resolved works but I need something more - I want to show my team how many bugs were created from the begginig of the year and how many are "done". Is there any way I can do this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think that many gadgets can meet your needs, such as pie charts, issue statistics,etc.
issuetype = bug AND created >= 2020-01-01 ORDER BY created ASC
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.