Dear community,
I already found the automation rule for summarizing story points into the parent task. This works totally fine (For parent in edit field {{subtasks.Story Points.join(" + ")}}).
Is there any possibility to sum those story points, where the issue is still open?
Best regards-,
Nicole
What do you mean by "still open"? Do you mean "not done"?
If so, an alternative method to what you show is to use smart value, list filtering with your math expression. For example,
{{#=}}0{{#issue.subtasks}}{{#if(not(equals(status.name,"Done")))}}+{{Story points|0}}{{/}}{{/}}{{/}}
How this works:
Please look here to learn more about those techniques:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.