I would like to create a quick filter to see where I am the assignee and additional assignee but also filter out all projects that have been completed. I started the following, but it is returning projects that are supposed to be excluded in this filter.
assignee = "robert.lynch" or "BA Assignee" = "robert.lynch" and status not in (Done, Closed, "No Longer Needed", "Not Reproducible", Resolved)
Where am I going wrong?
Hi Robert,
You're missing brackets
(assignee = "robert.lynch" or "BA Assignee" = "robert.lynch") and project not in (xxx, yyy, zzz)"
But if you're not familiar with JQL you can use Basic View on the Search Screen or the Agile Board Filter add-on in your board
Hi Robert,
you do not filter out projects, but status of issues. Add something like "and project not in (xxx, yyy, zzz)"
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.