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.
Hi,
I want to display sum of two number fields to third number field.
E.g.
Two Subtasks (Child issue )and One Story (Parent Issue)
Subtask 1 : custom field value 10
Subtask 2 : custom field value 20
If i closed two subtask then sum the both filed value to third custom field
Story : Custom field : 30
the Third custom field in parent issue : e.g (Story,epic)
Can you please suggest how to get this via Workflow transition / using power script
Where do you want the 3rd field?
If it is in Subtask, you could work with JMCF
something like
(issue.get("customfield_1") != null ? issue.get("customfield_1") : 0) + (issue.getParentObject("customfield_2") != null ? issue.getParentObject("customfield_2") : 0)
Or Automation for jira with the math operation
maybe you have to copy the values from subtask to parent first before you can calculate them
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.