Hi,
I am unable to collect below report from Jira. Someone please help on this ASAP.
1. Report that shows the usage of all the Projects in last 6 months
2. And/Or Report that shows the number of issues created/resolved by each project in the last 6 months.
3. And Report that shows the Project and their respective Project Owners
Hi @balan
depending on what you mean by "usage of all the projects" in your first point, you might be in need of specialized reporting as this can mean a lot of things.
If the standard Jira reporting options can't give you what you need, I recommend to have a look at Report Builder. It has a number of ready-to-use reports especially for ITSM purposes. Also, its "Universal Report" allows you to put together data very flexibly. Lastly, any kind of report/layout is possible using scripts. If you'd like me to show you how it works, feel free to reach out at any time.
Disclaimer: I work for the marketplace vendor who is offering this app, so obviously I'm biased. 😉
Hi @balan,
This topic is a duplicate of: https://community.atlassian.com/t5/Jira-Service-Management/Need-Jira-reports/td-p/2735665
See my answer:
#1 Create a filter in Jira that returns the issue created or updated in last 6 months:
created >= startofday(-6M) or updated >= startofday(-6M)
Then configure the Issue Statistics gadget of Jira to use this filter and display statistic type by Project. As a result, you will get the list of projects used in last 6 months.
Also, you could also use the Pivot Table & Pivot Chart gadget offered by our Great Gadgets plugin to display a report like this.
#2 Create a filter that returns the issues created in last 6 months
created >= startofday(-6M)
Use the same gadgets to display the stat of created issues for each project.
Create a filter that returns the issues resolved in last 6 months
resolved >= startofday(-6M)
Use the same gadgets to display the stat of resolved issues for each project.
#3 What do you mean by Project Owners? Do you refer to the Project Lead (that you can set in project settings)?
Danut.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not working for Report Builder, but can agree! Love that tool.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @balan ,
project = "YOUR_PROJECT" AND created >= -6M
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.