I'm trying to create a filter that hides sub-task issue type in the status of "To Do" but every JQL I can come up with also is hiding all other issue types in "To Do." Whats the JQL trick I'm missing?
example:
(issuetype not in (Sub-task) and Status not in ("To Do"))
!(type = sub-task AND status = "To Do")
This should be as easy as:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's about logic, not trickery.
For an issue to appear with that query, it must be not a subtask AND not in to-do. The clauses combine to select all issue types when you are asking about the status. I suspect what you want is
issuetype not in (subtask) or (issuetype in (subtask) and status = "to do")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.