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.