comparing two issues types against each issue status

Thomas Cucolo October 23, 2018

I would like to build a filter that does 2 things

1 Find all features that are in ( On Deck, Backlog, Open)

2 Find all issues  that have the feature as a parent that are In Progress

 

I have tried filter project = xx and Issuetype = feature and status in (On Deck, Backlog, Open) and issuetype = In Progress

 

nothing is returned but I think my logic is bad. somehow the feature needs to be the parent. 

Help

 

 

1 answer

2 votes
Alexey Matveev
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.
October 23, 2018

Hello,

You would need an add-on for it. For example, you could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could write a JQL query like this:

1. project = xx and issuetype = feature and status in ( On Deck, Backlog, Open)

2. key in subtasksOf("project = xx and issuetype = feature and status = \"In Progress\"")

Thomas Cucolo October 23, 2018

Thank you the Add in is only accessible to Core admins  in the company, thank you. 

Alexey Matveev
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.
October 23, 2018

You are welcome!

Suggest an answer

Log in or Sign up to answer