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.
I'm currently tracking items in a specific customer system with a JQL query expression.
(e.g. project = DT AND Customer = JDI AND key >= DT-100 ORDER BY created DESC)
This customer added a new system this week. But, I don't want to include this new system in the original JQL query. (OLED system F30011)
How should I add it to the expression in this case? (w/o F30011, Feeling like this)
And,
What would be better if I only want to track F30011? (only F30011, Feeling like this)
Hi @Kazuhiro_Yaguchi , thanks for your question and welcome to the community.
Depending on how the custom field for the system is configured, you can just exclude it from your query by adding to the end, (and system not in)
So you would end up, in my example case, something like this -
project = "Engineering Support" and customer = test AND key >= engs-100 AND "Company Value[Dropdown]" not in ("Be the Change You Seek")
Where I have used (I assume) the same type of custom field, a drop-down, to specify which values you don't want to include in this query.
Hope this helps but if not, tell us and either I or someone else will try to help.
Cheers
Note - "not in" will exclude issues with the options, but it will not include issues with no options. So to get options other than specified or no options at all, use
.. AND ("Company Value[Dropdown]" not in ("Be the Change You Seek") or "Company Value[Dropdown]" IS EMPTY)
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.