Forums

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

How to create a filter of Issues Assigned to me linked to an Epic I am not assigned to

Bruce Matzen
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!
November 22, 2022

I would like to create a  filter to use on a Jira Dashboard the only shows the Issues assigned to me where the Parent Epic ticket is not assigned to me.

Thanks for any ideas and I hope that makes sense :)

2 answers

1 accepted

3 votes
Answer accepted
Trudy Claspill
Community Champion
November 22, 2022

Hello @Bruce Matzen 

Welcome to the community. 

This is not something that can be done with native Jira filtering capabilities.

Do you have access to any third party apps on your system that extend the search capabilities? You may need to ask your Jira Administrators that question.

For instance if you have the Adaptavist Scriptrunner app you could use this filter.

issueFunction in issuesInEpics("project = <yourProject> and Assignee != currentUser()") and Assignee = currentUser()
Florian Bonniec
Community Champion
November 22, 2022

Depending on what you want @Bruce Matzen I would add the JQL part to include unassigne ticket also to the JQL @Trudy Claspill gave you.

 

issueFunction in issuesInEpics("project = <yourProject> and (Assignee != currentUser() OR Assignee is empty)") and Assignee = currentUser()
Like # people like this
Trudy Claspill
Community Champion
November 22, 2022

Good point, @Florian Bonniec !

harry
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!
November 22, 2022

Informative it is really helpful for me to use this information.

0 votes
Bruce Matzen
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!
November 23, 2022

Thank you so much that worked great @Trudy Claspill and @Florian Bonniec !!!

Suggest an answer

Log in or Sign up to answer