I want to sum up the storypoints of all linked stories if I set the Epic in progress. JSU and JMWE plugin are available.
Hi @Anita Hütter ,
Kindly see this solution here https://community.atlassian.com/t5/Jira-Software-discussions/Calculate-the-sum-of-original-estimates-of-all-issue-types-to-an/td-p/1660572 in which I describe a solution about calculating the sum of original estimate, by using the story point field. If you tweak a bit the rule I'm describing there, you should be able to get that in no time!
Let me know if you need more help! It should be piece of cake!
Cheers,
Alex
Using JMWE, to set the Story Points field value of Epic to sum of the Story Points field value of all the stories of the Epic, add a “Set field value (JMWE app)” post-function on the In Progress transition of the Epic, select “Story Points” field, “Value Type” as “Groovy Expression” and add the below Value :
issue.stories?.sum{ it.get("Story Points", 0) }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Anita Hütter ,
Yes, JSU offers Calculated Fields features that allow you to achieve this if you are using the Cloud version.
If you need further information on the configuration, I'd be happy to help!
Best,
Maria
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.
@Anita Hütter , Take a look a Abacus, you can do this in both server and cloud version. You can also do multiple rollups from subtask to story and story to epic if you choose. Below is a step by step example for subtask to story. You can adapt it for story to epic in you case.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you guys for your informations - I try first insert a "worker status" to produce an update button on the screen...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Anita Hütter Abacus is allows you to create execution plans that can be either event based, run on schedule or on demand to sum up you calculations.
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.
Do someone know a possibility to trigger this postfunction eventbased? I mean: The storypoints of a story are updated without changing the status and the storypoints in epics should be updated too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Anita Hütter that's exactly what my rule does. It auto-updates the field of the epic whenever a user changes the field of the story.
Another way to do it would be using scriptrunner and listeners (Listeners (adaptavist.com)).
Natively, via a PF it's not possible to do it. Concerning JMWE I don't have a clue if and how you can manage that.
Cheers,
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
On Jira Cloud, you can use JMWE's Event-based Actions to calculate the sum every time the Story Points field of an issue changes and store it on the parent Epic's Story Points field.
On Jira Server, the easiest solution is to use our JMCF app's Calculated Number field.
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.