Number of elements in variable

Krzysztof Hotiuk September 22, 2019

Hi, 

Is any possibility to check how many elements are stored in variable ?

ex.

uprawnienia="jeden, dwa, trzy" -> it should tell, that here are three elements

uprawnienia="jeden" -> it should tell, that there is one element. 

I'm looking for something like this in JQL:

project="jakisprojekt" and numberof(uprawnienia)=1

I know, that it isn wrong statement but looking for something similar.

any idea?

I have "jira automation plugin". if I can use it, let me know how?

 

Thanks, 

Krzysztof

 

1 answer

0 votes
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.
September 23, 2019

You'll need something that can be used to write a new "JQL function".  Automation cannot do that, you'll need one of the full Scripting apps to do that (or write your own app)

Another option might be a scripted field that simply returns issue.getCustomFieldValue(cf).size() - then you'll be able to say things like "and uprawnienia-count > 2" in plain JQL.

Suggest an answer

Log in or Sign up to answer