Calculated custom field is not working in jira 5.2.11.

dhaval soni
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.
May 19, 2013

Hi,

I have created custom field with formula by follow below link:

https://innovalog.atlassian.net/wiki/display/JMCF/Home

(i have used - "Number field" as typed ).

In number field, added below formula under "descritpion" field:

<!-- @@Formula:  (issue.get("customfield_11100") != null ? issue.get("customfield_11100") : 0) + (issue.get("customfield_11101") != null ? issue.get("customfield_11101") : 0) -->

here, above 11100 and 11101 both fields are drop down field contains numbers.

and want it's addition of those numbers. so, have added above formula to make addition if not null.

But that textbox appears empty only and also allowing to enter value.

What is missing, can any one plz suggest me ?

Thank You

1 answer

1 accepted

0 votes
Answer accepted
dhaval soni
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.
May 19, 2013

found the solution as i have to install additional free plugin:

https://marketplace.atlassian.com/plugins/com.innovalog.jmcf.jira-misc-custom-fields

it allows to have additional custom field called as "Calculated Number Field"

so, have to use this field.

Now, it works correctly. (just needed to do parse to integer example (Integer.parseInt(issue.get("customfield_11100").getValue()))

just one thing, this field is added in create/edit screen and view screen.

It appears for view screen but not appear in create/edit screen,

Does it to due to readonly field ??

Suggest an answer

Log in or Sign up to answer