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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.