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-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 2, 2017

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

Vijay Sv 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 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