Trying to create a JQL query that excludes specific values in a field. When the query runs, it also excludes records with "none" in the field. These should be included in the query result, since the field is not required, so sometimes not populated.
Query Excerpt: AND labels not in ("workflow", "report")
Results exclude any record with "workflow" or "report" in the label, but also excludes records where label = [none]
Hi Mandy - try adding something on the end like:
OR labels is empty
AND labels not in ("workflow", "report") OR labels is empty
Hi @Mandy Ernst
AND labels not in ("workflow", "report") OR labels is null
These empty/null values can be tricky...
HTH,
KGM
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.