How find issues with 2 or more labels?

Artur Amirov March 16, 2017

Hello.

 

Can any chance to create filter with showing all issues where labels has 2 values or more?

 

Best regards,

Artur Amirov.

1 answer

1 accepted

1 vote
Answer accepted
Thomas Schlegel
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 16, 2017

Hi Artur,

if you have the Scriptrunner-Plugin for JIRA you can add a scripted custom field, e.g. "Number of Labels". Use the Number Searcher for the field.

This field is defined with the following script:

issue.getLabels().size()

Then, do a full reindex, so the field is filled for all your issues.

After that, you can search  with the following JQL:

"Number of Labels" > 2

But, this works only if you have the scriptrunner plugin. I don't know a solution without that plugin.

Artur Amirov March 16, 2017

Thanks.

Suggest an answer

Log in or Sign up to answer