I have an advanced search filter right now that almost gets me what i want to see. I'd like the issues listed to only include unassigned issues and issues assigned to Carlie Neff and Ivers Keller. I need help figuring out how to include the unassigned portion of this.
This language works to include the two users but not the unassigned:
project = "Analysis Lab" AND status != Closed AND assignee = ikeller OR project = "Analysis Lab" AND status != Closed AND assignee = cneff
This language does not work and gives an error:
project = "Analysis Lab" AND status != Closed AND assignee = ikeller OR project = "Analysis Lab" AND status != Closed AND assignee = cneff OR project = "Analysis Lab" AND status != Closed AND assignee = "unassigned"
Hi @carlie neff
Welcome to the Community!!
Try This
(project = "Analysis Lab" AND status != Closed AND assignee = "ikeller") OR (project = "Analysis Lab" AND status != Closed AND assignee = "cneff") OR (project = "Analysis Lab" AND status != Closed AND assignee = EMPTY)
For unassigned issues its assignee = EMPTY
Thanks,
Pramodh
Yes! Thank you! EMPTY was the correction i needed. I really appreciate the help.
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.