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,
I have the problem that I would like to filter my tickets, I want a filter in which all tickets appear that have no assignment impact and urgency.
It doesn't work with != or not in , anyone have a suggestion?
Best regards
You're looking for empty fields (ones with nothing set), so I'd suggest either
Impact is empty and Urgency is empty
Impact is empty or Urgency is empty
The first will find issues where both are unset, the second issues where either is unset.
Can you please share you full JQL with us?
In addition, can you please clarify what type of fields are Impact and Urgency and what values do they take?
Finally can you confirm that at least 1-2 issues have values on these fields?
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
(Impact != "Extensive / Widespread" OR Impact != "Minor / Localized" OR Impact != "Moderate / Limited" OR Impact != "Significant / Large") AND (Urgency != Critical OR Urgency != High OR Urgency != Low OR Urgency != Medium)
all will be displayed that has no value in both fields
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank You,
Impact is empty or Urgency is empty
Thats is the solution
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.