Sum Two Number Fields via PF / Scripted field

Hardik Parekh December 3, 2019

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.
December 3, 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
Leena Swar November 12, 2020

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