Forums

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

JQL - filter "To Do" or "In Progress" tasks/subtasks that Epic is not in "Done"

Kazumi Kerr March 18, 2022

Hello,

I would like to filter tasks/subtasks that status is "TO DO" or "IN PROGRESS" but also the Epic is not "DONE".

I tested this query, but it did not give me what I desired:

project = 12345 AND issuetype not in (Epic) AND status not in (Done) and "Epic Status" != Done

Does anyone know why?

1 answer

1 accepted

0 votes
Answer accepted
Bill Sheboy
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.
March 18, 2022 edited

Hi @Kazumi Kerr 

You cannot perform such a query with out-of-the-box Jira JQL features.  Specifically, you are trying to check fields of the epic and excluding epics from the query.  Such queries require correlating different query expressions to join the epic and non-epic information.

If you need this type of query infrequently, you could perform it in steps or export your issues to another tool (like a spreadsheet) for performing the analysis.

If you need this often, please investigate marketplace options to enhance the features of JQL.

Kind regards,
Bill

Kazumi Kerr March 18, 2022

Thank you, Bill.

Suggest an answer

Log in or Sign up to answer