I am trying to use the Does Not Contain operator to identify any issues in my entire JIRA instance where the Summary does not contain the word "411";
So my JQL statement I use is (summary !~ "411"), while this seems straightforward, the search still generates results that have the "411" string in the summary.
I read the advanced searching page here:
https://confluence.atlassian.com/jira064/advanced-searching-720416661.html#AdvancedSearching-KeywordsReference-DOES_NOT_CONTAIN
but can't find any solutions. What am I missing/overlooking?
Thanks.
Try this one
!(summary ~ "(411)")
Hello,
What is your Jira version? I just tried on Cloud and it worked.
Try to query like this:
summary !~ "411*"
unfortunately that doesn't fix it either; not sure if it has to do with the fact that I am searching based on numbers
See the answer by Ignacio Pulgar (May 9, 2018) in this thread:
https://community.atlassian.com/t5/Jira-Core-questions/Search-for-issues-that-do-not-contain-text/qaq-p/455633
The secret ingredient is how to use the filter:
<some-criteria-here> AND FILTER NOT IN (<filter-ID>)
Definitely counter-intuitive IMO...
Yes, this works! Thanks.
This isn't working for me: !("SBM Tracking No" ~ "K")
It looks like you're new here. Sign in or register to get started.