so i have this JQL
project = RMOB AND issuetype in (Bug, "Story Defect") AND resolution = Unresolved AND assignee in (membersOf(Others)) ORDER BY assignee ASC, updated DESC
I want to add both assignee in a group of Others, plus all the tickets that is unassigned. I tried to add AND assignee = Unassigned but it didnt work, i also added assignee != empty but it didnt work too :( ?
I suspect it's simply your JQL syntax
I'm not sure that I have understood the question, but if you mean that you're looking for a set of issues with "assignee is in a group called others, or unassigned", then
project = RMOB AND issuetype in (Bug, "Story Defect") AND resolution = Unresolved AND (assignee in (membersOf(Others)) OR assignee is empty)
should do it.
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.