I need to know the following.
I create a multi-user select custioom field.
I put it on the default/resolve/workflow screens and it will allow the selection of multiple users seperated by commas.
If I try and create a filter using simple search it will only allow a single user to populate.
If I try and do an advanced filter it will only allow me to filter one assignee at a time.
is there a query or patch for this
You can try using IN to search for a group of users using JQL(advanced search).
e.g. "multi user picker field" IN ("user1","user2")
This will bring issues that have any of those users.
If you want to bring only issues that have both users included, you can use AND to search for each user.
e.g. " multi user picker field " = user1 AND " multi user picker field " = user2
This will bring issues that have both users, even if there are more users on the field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.