You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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.
Atlassian's marketplace partners have had a very productive start to 2021! Since our last roundup, our developer community has added over 160 new cloud apps to the Atlassian Marketplace to help you...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.