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
Hello all,
I can create a filter to return all issues where:
labels = Dev_Review AND "Epic Link" = 1233
However, if I try to filter all issues that don't have the 1233 Epic link it doesn't return anything when there are at least 4 issues:
labels = Dev_Review AND "Epic Link" != 1233
Any help is greatly appreciated.
Hi Catherine - Welcome to the Atlassian Community!
You have to use the is empty to get the correct results. Fazila's JQL is correct.
What is it returning that you are not expecting to see?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Fazila Ashraf ,
I don't want to use "Epic link" is empty, because I don't want to remove all issues with Epic links, just the specific epic link 1233
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Catherine , note the OR operator in ("Epic Link" != 1233 OR "Epic link" is empty)
The 4 issues that you expect to be returned for your query 'labels = Dev_Review AND "Epic Link" != 1233' , do they all have a proper epic link?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Catherine, yes, this labels = Dev_Review AND ("Epic Link" != 1233 OR "Epic link" is empty) - should work for you.
For the next cases when you won't know how to build a complicated request next time, you can try Dynamic Filter: JQL Replacer for Jira (created by my team).
It has the flexible builder that allows creating requests without JQL knowledge.
Regards
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.