Forums

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

Search Task with "labels" not includes some text

Karmandroid Singularity
Contributor
March 10, 2020

How do I create a filter for looking Task with labels not included "Apple2019" on it?

I tried: 

labels !~ Apple"
labels !~ "Apple2019"

 Both is throwing me error:

The operator '!~' is not supported by the 'labels' field.

1 answer

1 accepted

1 vote
Answer accepted
Cristian Ionescu
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 10, 2020

Hi Karmandroid,

 

PLease try JQL:

type=Task and label != "Apple2019"

Karmandroid Singularity
Contributor
March 10, 2020

Yep, I just noticed it, was using wrong operators.

Thank you

Jack Nolddor _Sweet Bananas_
Atlassian Partner
March 10, 2020

Probably you also want to retrieve issues not having labels at all... so use:

 

type=Task and (label != "Apple2019" OR label is EMPTY)

Regards

Rob Camarda
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 25, 2022

how would you add a wild card where there are no labels that start with Apple?

Suggest an answer

Log in or Sign up to answer