Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to have two assingees? and order tickets automatically by due date?

Luisina García
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 5, 2019

I need to have the tickets assigned at list to two people, is that posible? in order to click ones name and see all the tickets assigned to that person.

 

And also we are not having them to sort automatically by due date, we are doing it by hand, is there an option?

 

Thank you in advance

3 answers

1 vote
Jack Brickey
Community Champion
August 5, 2019

you can only have a single user in the "Assignee" field. You could consider creating a secondary user picker field for this but it won't have the same behavior as the system Assignee field. You could certainly do a JQL that would show both. For example...

Assignee = jack OR Secondary-Assignee = jack

sorting by due date is a simple mater of clicking on the header in the filter results

1 vote
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 5, 2019

Hello,

You can not assign a ticket to two users. You can create a multi user custom field and set the field with the two users. Then query this field in your JQL queries.

You can sort JQL result by the due date field if you add the order by duedate clause to the JQL query.

0 votes
Mike Rathwell
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 5, 2019

Hi @Luisina García ,

I run up against this same problem with needing multiple assignees all the time. Unfortunately, Jira doesn't provide for this natively. What I've done, usually, is create a second custom field that can have multiple people and call it something like "Alternate Assignees" (to keep the name separate from the system default. Then I pick someone on a team (usually a lead) as the default assignee and add the others to the "Alternate Assignees" field. You can then write a query that handles it such as this which finds all the people and issues that are not complete:

project = <project> AND (assignee in (name1, name2,...) OR "Alternate Assignee" in (name3, name4,...) AND resolved is EMPTY

You can extend that query to this to sort by due date:

project = <project> AND (assignee in (name1, name2,...) OR "Alternate Assignee" in (name3, name4,...) AND resolved is EMPTY ORDER BY due ASC

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events