How to pull data from drop down values (Customized field) in jira via JQL. For instance, if I have a dependent dropdown as follows:
Option 1
Value a
Value b
Value c
Option 2
Value a
Value b
Value c
How could I view tickets mapped against Option1 -->Value b and Option2 --> Value c. Can anyone help me with JQL ?
I'm not exactly sure what you mean with "dependent dropdowns". Could you elaborate on that or maybe include a screenshot?
In general, a JQL for two dropdown values would be:
"Single Select 1[Dropdown]" = B AND "Single Select 2[Dropdown]" = C
Does this help?
Cheers,
Matthias.
If you're talking about the cascading select fields, I'd recommend a JQL like this:
"Cascading Select" in cascadeOption("1","b") or "Cascading Select" in cascadeOption("2","c")
More details about cascadeOption can be found in the docs.
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.