You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.