I am trying to create a quick view for each of my team members. I am using the JQL below which I feel is the correct way to pull in tickets that have "Assignee" and "Additional Assignee". When I save it seems to be showing me all types of tickets for all types of team members. It is not isolating it by my criteria (username).
"Additional Assignees" = NAME
OR assignee = NAME AND resolution is EMPTY
(NAME is the work email that Jira uses for my company)
Any help on this would be outstanding and it is much appreciated.
You almost got it. It is just a question of adding parenthesis in the appropriate places:
("Additional Assignees" = NAME OR assignee = NAME) AND resolution is EMPTY
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.