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

Custom Script Field to sum value those results comes in billion

Amit Kumar Singh March 2, 2022

What should is use in place of double to calculate the value in billion.Custom Script Field.PNG

import com.atlassian.jira.component.ComponentAccessor

import com.atlassian.jira.issue.history.ChangeItemBean

 

// Get values from 4 custom fields

Double val1 = makeNullZero(getCustomFieldValue('Field Name ($)'));

Double val1 = makeNullZero(getCustomFieldValue('Field Name ($)'));

Double val1 = makeNullZero(getCustomFieldValue('Field Name ($)'));

Double val1 = makeNullZero(getCustomFieldValue('Field Name ($)'));

Double sum = val1 + val2 + val3 + val4;

return sum;

static Double makeNullZero(Double val) {

    return null == val ? 0 : val;

}

0 comments

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events