How to configure a filter to view only a specific epic along with tickets w/o epic

Steve Williams October 24, 2019

New to JIRA, and I'm trying to configure a view where:

I see all tickets in a project that do NOT have an epic linked, while also including one particular epic (i.e. "epic-abc"). So, I want to see:

ticket1 (no epic linked)
ticket2 (no epic linked)
ticket 3 (epic-abc)
ticket4 (no epic linked)

etc.

What syntax should I use in the JLQ query? Thanks in advance

2 answers

1 accepted

1 vote
Answer accepted
Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 24, 2019

consider the following JQL query to create a filter...

project = myproj AND "epic link" is empty OR "epic link" = thisepic

replace myproj and thisepic to meet your needs

Steve Williams October 24, 2019

Awesome, thanks! 

0 votes
seethamraju October 25, 2019

Hi @Steve Williams ,

Its very easy 

JQL: project = XXXX AND issuetype = Story AND "Epic Link" in (XXXX-1234) AND Sprint in (ABCD, XYZA) ORDER BY priority DESC.

here we can use multiple epics also separated by coma (,) and if you want to list out in only required sprints also we can use above JQL.

Hope it clears 

Suggest an answer

Log in or Sign up to answer