Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Creating a calculated field based on the number of labels?

Jean-Francois Bouchard March 1, 2017

Hello,

I am trying to create a calculated field that gives us the number of labels (from a custom label-type field) attached to the very same issue, but I am starting to doubt the possibility of it.

Any ideas of how I could go about it?

Thanks!

2 answers

1 accepted

1 vote
Answer accepted
Nic Brough -Adaptavist-
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.
March 2, 2017

I'd use the script-runner add-on to populate the field with issue.getCustomFieldValue(cf).size()

Vijay Sv
Contributor
October 10, 2017

I am using a calculated field to get the number of Labels, but if the value of custom field is null, it throws me an error "Target exception: java.lang.NullPointerException: Attempt to invoke method size on null value"

 

How do i overcome this error?

My formula:

<!-- @@Formula: ((issue.get("customfield_xxxx").size()).toString()) -->

0 votes
Vijay Sv
Contributor
October 10, 2017

I was able to manage null values.

Here is the formula:

<!-- @@Formula:
if (issue.get("customfield_xxxx")==null) return null;
return issue.get("customfield_xxxx").size(); -->

Suggest an answer

Log in or Sign up to answer