Hello everyone, I want to configure my board to display all risks and opportunities and its sub-tasks.
My JQL filter: project = XXXXX AND issuetype in (Opportunity, Risk, Sub-task) ORDER BY Rank ASC
My problem: the filter also displays sub-tasks of normal tasks
What can I do?
Thanks for your help
Hello @Magdalena Gruber ,
Welcome to the community !
Unfortunatly out of the box, Jira does not offer the possibility to filter for subtasks of specific issues.
However many plugins out there offer such feature.
If you have Scriptrunner for example you would be able to so :
project = XXX and (issueFunction in subtasksOf("type in('Opportunities', 'Risk')") or issuetype in (Opportunities, Story)) ORDER BY Rank ASC
Hope this helps !
Kind regards.
Hi @meliodas16 thanks for the answer. It helped me a lot!
project = XXX and (issueFunction in subtasksOf("type in('Opportunity', 'Risk')") or issuetype in (Opportunity, Risk)) ORDER BY Rank ASC
Greetings!
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.