You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
My scrum board has a filter of:
project = DTBTCD AND "Epic Link" != Interruptions ORDER BY Rank ASC
However, when I browse the backlog the Epic's column is now empty.
However if I change my query to:
project = DTBTCD ORDER BY Rank ASC
All the epics show up again. My goal is to have a scrum board that filters out this epic but I'm unclear why the filter is effecting the backlog view.
BTW If I don't use "Epic Link" and instead "Epic Name", it doesn't show stories for those Epic's in either view.
With your JQL, Jira will check if the the Epic Link is not Interruptions. But this works only for the issues, that have an epic link. All issues without an epic link will also be filtered out.
So you have to check also if there is no epic link.
project = DTBTCD AND ("Epic Link" != Interruptions or "Epic Link" is Empty ) ORDER BY Rank ASC
@Anthony Ross Try with project=DTBTCD and "Epic Link" != ABC-1 and "Epic name"!=Interruptions . This query will show other Epics, and also the stories/Task that are not associated with Epic ABC-1.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.