Forums

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

Filter that would display all the stories under several specific epics in my project but not ALL.

Mireille
Contributor
January 19, 2023

My project is for both Infrastructure and Development. I am trying to create a Filter for my backlog, so I can see only the stories in the Epics that pertains to them. I tried: (both with AND and OR, but the filter does nothing

"Epic Link" != SRMP-239 OR "Epic Link" != SRMP-270 OR "Epic Link" != SRMP-271 ...

 

1 answer

1 accepted

0 votes
Answer accepted
Hannes Obweger - JXL for Jira
Atlassian Partner
January 20, 2023

Hi @Mireille

assuming that you're able to list all the epics that you care about - from your example, it looks like you are - the usual syntax here would be

"Epic Link" IN ("SRMP-239", "SRMP-270" [...])

which is actually equivalent to 

"Epic Link" = "SRMP-239" OR "Epic Link" = "SRMP-270" OR [...]

Does that work?

Mireille
Contributor
January 20, 2023

Thank you so much Hannes, I have the right filter now :)

I think I am struggling with knowing when to use "=" versus "is" versus "in"

Suggest an answer

Log in or Sign up to answer