You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.