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 ,
project = "YOUR_PROJECT" AND created >= -6M
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. 😉
Not working for Report Builder, but can agree! Love that tool.
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.