Forums

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

filter lables by name

Maribel Alonso Jaen
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!
January 4, 2021

I have a list of labels in my row and I need to filter from that list just some labels according especific names. How should I do?  

Aggregate({[Label].[“PTC_*”]})

OR should I do?

Aggregate(
Filter([Label].Members, [Label].CurrentHierarchyMember.Name MATCHES “PTC_*”)
)

NO IDEA

1 answer

0 votes
Samantha
Contributor
January 4, 2021

Hi @Maribel Alonso Jaen ,

Are you trying to search for all issues where the label starts with "PTC_" using * as your wild card?

If you are trying to do a simple search for the label PTC_* you will need the quotes due to the use of a special character.

labels = "PTC_*"

Suggest an answer

Log in or Sign up to answer