Forums

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

Kanban Board with Risks, Opportunities and Sub-Tasks

Magdalena Gruber
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!
August 29, 2023

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

1 answer

1 accepted

0 votes
Answer accepted
meliodas16
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 29, 2023

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.

Magdalena Gruber
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!
August 29, 2023

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!

Suggest an answer

Log in or Sign up to answer