I have a couple of Select List - Multiple Choice Custom Fields.
I am trying to do a search where custom field - Inspector = BOTH Bob and Jane
This is what it creates when I select the 2 individuals.
"Inspector" in ("Bob", "Jane") order by created DESC
I cant seem to get the Syntax down for this.
I am using JIRA Cloud
Any suggestions?
"z in (x,y)" is an or-type compound, it's asking the question "is Z in (x or y)?"
I think you need to try "inspector = Bob and inspector = Jane"
My quotes were there to indicate the sentence as the distinct part of the answer, not to be pasted in direct. Try it without the quotes, but type it, so that it auto-completes the user names for it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What does the auto-complete do when you start typing Bob?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is when i am in Basic Mode and i select the custom field Inspector and then select their names from the list.
I switch to Advanced and this is what i get.
The results is it has selected all records that have Bob or Jane as the inspector.
I want it to only provide results where Inspector = Bob & Jane
JIRA Error 2.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You said that already
Please, could you type the query I gave you? The autocomplete should help you fill in Bob (and Jane later).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Type this as your JQL query, nothing else.
inspector = Bob and inspector = Jane
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was finally able to get it to work the way to fix it was
"inspector" = "Bob" and "inspector" = "Jane"
This allowed for me to get the results i needed where only showing me the items where
Inspector = Bob & Jane
Thanks Everyone for the help
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.