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.
Number Field 3 = Number Field 1 + Number Field 2.
Can you please suggest how to get this via Workflow PF / using Scripted field ?
I went through many answers in community but I didn't find confirm answer anywhere.
You need to created a custom field using a plugin (Jira Misc Custom Fields., or ScriptRunner).
You can then define the Groovy script in the scripted custom field to extract and sum the two other fields. You will need the IDs of the two custom fields to be summed, the example script below adds two custom fields with IDs 1234 and 4321:
fieldA = issue.get(customfield_1234)
fieldB = issue.get(customfield_4321)
return fieldA + fieldB
You can add extra code to check for null values when extracting the field value, e.g.
fieldA= issue.get(customfield_1234) != null ? issue.get(customfield_1234) : 0
Hi Pete,
I am getting some declaration errors using the code. Can you please ping me the exact code for subtraction.
Regards
Viswa Mohana Reddy
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.