search for assignee and unassigned at the same time?

Ahmed Alghamdi October 8, 2017

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 :( ?

1 answer

1 accepted

1 vote
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 8, 2017

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.

Fummi Ayorinde May 6, 2019

What does the ASC mean?

Like Wendy Wesley likes this

Suggest an answer

Log in or Sign up to answer