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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.