Lets say there is an parenet JIRA issue and under it, it has 3 Sub-tasks.
each sub tasks has each own Original estimate and Time logged.
To sum them to show in parent JIRA issue ticket, is it right to use following field in parenet JIRA Issue type?
∑original estimate
∑Time spent
Hi @Taeseok Ou ,
So to solve this you can use our new aggregate math functions to sum up the original estimate on all sub-tasks. For example here's a rule that will sum up the original estimate whenever it changes on a child issue and update the parent:
The smart-value that you need is this:
{{#=}}{{issue.subtasks.timetracking.originalEstimateSeconds.sum}}/60{{/}}
(the division by 60 is necessary, since the original estimate field requires its input in minutes)
To aggregate the 'time spent', you probably want a second rule that looks something like this:
Hope that helps!
Cheers,
Andreas
Thank very much Andreas for detailed and kind solution.
By the way,
what is then following two for which purpose?
∑original estimate
∑Time spent
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
oh,,,, the other Reply on my other similar question says below what I asked just above thread. Thanks!
----
We have a feature request created with our development team to get it implemented:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Andreas Knecht I got this example to work, but how do I present the result in a pretty print format, e.g. "2d 4h"?
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.