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
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.
congratulations! :)
I would appriciate it if you vote up my answer or accept it. Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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.