I have several projects that have several issues but no sub tasks. I have one project with several sub tasks. I want to create a filter for my dashboard that shows all issues but NOT the subtasks.
Like:
Project A-show only parent issue on dashboard
Project B-show the multiple issues on dashboard
Project C-show the multiple issues on dashboard
Hey Ken,
You can do this with an advanced issue search (jql) “
issuetype not in subtaskIssueTypes()”
So you’ll want something along the lines of:
project in (“project a”,”project b”,”project c”) and issuetype not in subtaskissueTypes()
CCM
Thanks for the detail. :) I was hoping not to have to call out each project since they come and go.
I appreciate it!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why not just try the below query which will shows all the parent issues and leaving all the subtasks
"issuetype not in subtaskissueTypes()"
I know its a verryyy late reply but might help others who are searching for answers :)
Regards
Sarthak
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.