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 :)
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()
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()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you so much that worked great @Trudy Claspill and @Florian Bonniec !!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.