Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,558,643
Community Members
 
Community Events
184
Community Groups

Sum Two Number Fields via PF / Scripted field

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.

1 answer

0 votes
Pete Singleton
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Dec 03, 2019

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 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events