labels = A AND labels = B
Can this be specified in the search interface?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would like to make this search work in the Issue Navigator. Is that possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
or .. labels in (A, B)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
xDDD
you're right!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
that's an OR not an AND :-) That search would return all issues with either A or B as a label
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it will check if it is in both the label then only it will filter
labels in (A) AND labels in (B)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I like this shorter version, thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = XXX AND issuetype = Bug AND Labels in (XXX) AND Labels in (XXX)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
labels = A OR labels = B // if any of labels can be true
labels = A AND labels = B // if both must be found for a specific task
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had the same problem filtering components. This is how I solved it. Unfortunately it doesn't work with the basic filter, I had to use advanced to edit the text itself.
I am able to filter issues that have both "Customer" and "FPGA" components by including this string:
"AND component = Customer AND component = FPGA"
I am able to filter issues with "Customer" and NOT "FPGA" by including this string:
"AND component = Customer AND component not in (FPGA)"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
None of the posted suggestions are correct. This multi value field (it's not a text field) seems to handle the search set intersections like an "OR" rather than "AND"
Will post here if I find anything helpful. I need to search where Labels have three set values, not one or two of the three. Probably end up doing a count of the labels containing certain characters... a wobbly solution.
Cheers,
Pete Q
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Products like this add-on app give a clue about searches involving these type of fields. I'm not buying another add-on for our use case, or going complex with jump-through-hoops programming to hammer together a search routine. There are other fields that we can use to suit our scenario.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
.
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.