How can I produce a report for total points completed by developers?

Roger November 18, 2022

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

4 answers

1 vote
Karolina Wons_SaaSJet
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 21, 2022

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

0 votes
Marlene Kegel - codefortynine
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
November 24, 2022

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.

quick-filters-jira-dashboards_story-points-per-dev.pngYou can view and test some basic features of our app on our demo dashboards. 

0 votes
Mehmet A _Bloompeak_
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
November 20, 2022

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.

  • You can create custom, flexible and colorful bar charts and table views for any data you want/need. As data source, you can choose Projects or Saved Filters or Advanced (JQL).
  • You can set X axis to be any parameter like Created(month), Assignee, Sprint, Fix Versions etc.
  • You can set Y axis to be any parameter like number of issues, sum of remaining estimates, average of story points etc.
  • You can group your data on any field(Sprint, Status, Assignee, Component, Project etc.) you want.
  • You can choose various date ranges like All Time, Last Year, Last 3 Months, Last 6 Months etc.
  • You can modify existing Segments or add new segments.
  • You can order the results by drag and drop.

Here is a sample report that shows sum of story points delivered by each assignee on each month.

 SumOfStoryPointsByAssigneeOnEachMonth.png

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.

0 votes
Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 18, 2022

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.

Roger November 18, 2022

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 

Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 18, 2022

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.

https://www.google.com/search?q=jira+cloud+story+points+per+assignee&oq=jira+cloud+story+points+per+assignee&aqs=chrome..69i57.6971j0j1&sourceid=chrome&ie=UTF-8

Roger November 18, 2022

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

Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 18, 2022

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.

Roger November 21, 2022

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

Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 21, 2022

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". 

Suggest an answer

Log in or Sign up to answer