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
I have a checkbox custom field called "OKR?" that has the following options:
Q1FY22 - Deliver GA
Q1FY22 - Stretch
Q1FY22 - Code Complete
IS there a way to do a wildcard search in jira where I can say something like
"OKR?" in (*"Q1FY22") so I don't have to add each individual option to the query? The custom field has many many more options so it is tedious to include the options 1 by 1
Thanks let me know
Hi,
This is not possible in pure Jira Server, you will need to have a plugin for this. For example with JQL Search Extensions you could use the function called fieldMatch:issue in fieldMatch(
"project = ABC"
,
"OKR?"
,
"*Q1FY22"
)
To achieve what you need (you can replace project = ABC with any JQL query you need).
Take a look at the documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.