How can I filter issues im watching by assignee?

Emily Levis February 27, 2019

How can I filter issues/projects by assignee so I can see what each user is working on?

1 answer

1 vote
Matthias Gaiser _K15t_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 27, 2019

Hi @Emily Levis

you could do an advanced search with a JQL like:

watcher = currentUser() and status != Done ORDER BY assignee 

This query is built up of these parts:

  • watcher = currentUser()
    Filters issues you are watching
  • status != Done
    This excludes all issues which are in status "Done", you might want to add a filter like this to exclude issues which are already completed.
  • order by assignee
    This sorts the search result by assignee.

Hope this helps,
Matthias

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events