Hello,
I have a "select list multiple choice" customfield with list of values (10 approximatively) and I need to separate issues with only one value in this customfield and issues with more than one value.
Use case with reduced sample :
CustomField : Product
Values :
Let suppose that we have these issues :
Issue-1 : Product is FrontApp only
Issue-2 : Product is FrontApp and Back
Issue-3 : Product is Admin
If I want all issues which contains "FrontApp", I can write the JQL Query :
Product = "FrontApp"
Then I will find Issue-1 and Issue-2
But, if I want to find issues with only one value, I don't how to do that.
Maybe something like that :
Product = ["FrontApp"] ==> only Issue-1 will be found.
or
Product.count = 1 ==> only Issue-1 and Issue-3 will be found
Have we a feature in JIRA Cloud ?
Thank's for your help
Best regards
Try this.
Product = FrontApp and Product != Back
Thank's for your answer.
This solution is ok if I have only 3 products. But with 10 products...
Your solution give me something like that :
(product = "app1" and product != "app2" and product != "app3" and product != "app4" and product != "app5" ... ) or (product = "app2" and product != "app1" and product != "app3" and product != "app4" and product != "app5" ... ) [etc]
It can be a very very long query only for showing all issues with only one product.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.