calculated select field value from "Jira Misc Custom Fields"

Ozgur Kolan September 25, 2013

Hi,

I try to calculate select field value (number value) i used "jira misc custom field plugin - Calculated Number Field custom field" as their said i got 2 custom field

" customfield_24499 and customfield_24497" and i use this formula

"<!-- @@Formula: (issue.get("customfield_24497") != null ? issue.get("customfield_24497") : 0)

+ (issue.get("customfield_24499") != null ? issue.get("customfield_24499") : 0) -->"

it works but for example i select value "4" from custom field 1 and select value "1" from custom field 2 it calculated = 41 as see it doesnt work and it calculate merge value.

how can i do ?

p.s : sorry for grammer

2 answers

1 accepted

4 votes
Answer accepted
Ozgur Kolan September 26, 2013

hi michal,

i solved problem. both custom field are "select list". it assigned number value both custom field

i used this formula at customfield

"<!-- @@Formula: (Integer.parseInt(issue.get("customfield_24497")) != null ? Integer.parseInt(issue.get("customfield_24497")) : 0)
+ (Integer.parseInt(issue.get("customfield_24499")) != null ? Integer.parseInt(issue.get("customfield_24499")) : 0)-->"

if i dont use "Integer.parseInt" at formula it cannot calculate number value it concatenated value.

MichałS
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.
September 26, 2013

congratulations! :)

I would appriciate it if you vote up my answer or accept it. Thanks.

3 votes
MichałS
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.
September 25, 2013

does the 2 custom fields return strings or numbers? If it is string it is pretty obvious that you get the values concatenated.

The solution is eighter to return number values from the fields or parse the strings into numbers and then add them.

Suggest an answer

Log in or Sign up to answer