I'm trying to do this:
reporter = currentUser() AND status NOT IN (closed, done, completed, resolved, not required) ORDER BY updated DESC, key ASC, summary ASC, created DESC
but I'm getting the error:
Error in JQL Query: Expecting either a value, list or function but got 'not'. You must surround 'not' in quotation marks to use it as a value. (line 1, character 76)
I know I can do this with
AND status != "closed" AND status != "done" ... etc
but this seems very verbose.
We're on Jira v7.13.5.
Hi @Mark Kenny
You can leave the filter in the same format for the most part, the issue is that the status not required should be in quotation marks - filtering any custom field, status, resolution etc. consisting of more than than one word must always be in quotation marks. So the filter should work as:
reporter = currentUser() AND status NOT IN (closed, done, completed, resolved, "not required") ORDER BY updated DESC, key ASC, summary ASC, created DESC
Thanks! Should've spotted it was the second "not" that it was complaining about :)
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.