Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi, I have made a custom multi-select field in my task screen, to distinguish between task types. So most issues won't have anything selected in this field, but some will.
I want to create a JQL query on this field to return all the issues that have a selection on this multi-select field. So for example, my field is called 'workshop' and the options to choose in the drop-down are 'risk', 'design thinking' and 'compliance'.
I was thinking that the following JQL would work...
workshop = "risk" OR "design thinking" OR "compliance"
but this isn't working for me. Any suggestions?
Dear @Stu,
you JQL's syntax is wrong. You can only compare a field with a fixed value or function.
It has to be
workshop = "risk" OR workshop = "design thinking" OR workshop ="compliance"
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A little bit left of the vote button (hover over). There you can set a green check.
Vote and accept are different.
Many thanks
Thomas
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.