How can I produce a report for the total points completed by developers for my entire project?
Pie Chart type of report
I currently get the total stories completed by developers, now I need the points each one of them is closing.
Thanks in advance
Hello @Roger
Here's a use case that can help you to find the time spent by each developer with Time in Status for Jira Cloud.
This add-on is developed by my SaaSJet team. Let me know if you have any questions,
Hope it helps
Hi @Roger,
I am Marlene from codefortynine.
Another option would be our Jira cloud app Quick Filters for Jira Dashboards.
With our app you can sum up story points per assignee, or any other Jira number field.
You can view and test some basic features of our app on our demo dashboards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Roger
You can try Reports - Charts and Graphs for Jira app developed by our team to create various reports, charts and graphs for your Jira projects.
Here is a sample report that shows sum of story points delivered by each assignee on each month.
Below you can see an article about creating custom reports, charts and graphs in Jira with our app.
How to Create Custom and Flexible Reports, Charts and Graphs in Jira
Here is our live demo dashboard where you can see and modify sample reports and play with them.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Roger
Welcome to the community.
There is not a native feature to provide that information. Are you open to purchasing a third party app, or do you have any third party apps already? You might have a third party app already that would help you do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
really? so I can't input a query to get this data? something like this? I save that up and then pull the report section pie chart.
Project = ??? AND status = Done ORDER BY assignee ASC
The company don't have a third party app
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, unfortunately you can't.
The Pie Chart gadget produces wedges based on count of issues. There is no option to configure the numeric summation for the gadget.
There are no built in gadgets that sum story points based on a filter for issues.
You could:
1. Construct a filter to retrieve the relevant issues.
2. Format the results as a List (vs. Details)
3. Include the Assignee and Story Points fields in the columns of the List
4. Export the results to Excel
5. Generate summations and graphs in Excel
If you use Google to search for the topic you will find multiple community posts that provide suggestions for third party apps that could be used.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok, thanks...one more thing, if I pull a report as you said, how can I get the entire project, I know how to get the csv for a sprint, but I need two years' worth of data and If I do it sprint by sprint will take me forever. thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is it a Company Managed project or a Team Managed project?
Get all the issues for a project where the issues also have a value for story points with this filter.
project=<your project> and "Story Points" is not empty
For a Team Managed project using "Story Points Estimate" instead of "Story Points".
The search results are limited to 1000 issues. If you have more than 1000 issues then you will need to add another criteria to get the issues in smaller batches, like Created before (and then after) a specified date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Team managed project, Trudy...thanks, how do I get it the time range.
I used the following Query
Project = xxxxx AND "Story Points" is not empty and status = Done ORDER BY assignee ASC
with that, I got about 900+ entries, but In case I need to add other criteria for before and after, how can I do that...
Big thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sounds like you need to read up on constructing JQL filters
https://support.atlassian.com/jira-software-cloud/docs/what-is-advanced-searching-in-jira-cloud/
That page includes links to other pages that talk about the fields, operators, functions, etc. that you can use in JQL.
The Operators page gives some examples of using operators with date fields.
https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-operators/
Do you want you date range based on when the issue was created, or when it was resolved? If you want it based on when the issue was created then the field to use is "Created". If you want it based on when the issue was resolved then the field you want is "Resolved".
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.