Hi,
in my jira (7.6.1) I have a custom field called "Co-Assignees". It is a multi-user picker that an author can use for adding assistants to a task.
I'd like to define a filter that gets me all issues where the current user is either the assignee or a co-assignee. Unfortunately the following doesn't seem to work:
assignee = currentUser() OR currentUser() IN Co-Assignees ORDER BY priority DESC, updated DESC
It seems that the IN operator does not accept a function as left operand. Is that right or am I doing something wrong? Is there an alternative way?
Thanks in advance for your help.
Alex
Hi Alex
did you try
assignee = currentUser() or <CUSTOMFIELD> in (currentUser())
assignee = currentUser() OR Co-Assignees in (currentUser()) ...
Cheers
Kurt
I know it sounds slightly backward but I agree with @Kurt Klinner that this is the right syntax.
~~Larry Brock
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear Kurt and Larry,
thank you for your help. It works perfectly. Actually I did try to swap the operands, because I saw it elsewhere, but it didn't work because I omitted the parentheses around currentUser().
So, if I interpret your solution right, we're making a 1-element list out of currentUser() and look for an intersection with Co-Assignees? Atlassian's JQL documentation should really mention that capability of the IN operator.
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad that it worked :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not working for me. It says below error.
An option provided by the function 'currentUser' for the field 'Developer[Select List (multiple choices)]' does not exist.
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.