Looking for the best way to migrate a project from an existing organisation to a new organisation. can someone help with the available options.
Try this one
!(summary ~ "(411)")
This isn't working for me: !("SBM Tracking No" ~ "K")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
See the answer by Ignacio Pulgar (May 9, 2018) in this thread:
The secret ingredient is how to use the filter:
<some-criteria-here> AND FILTER NOT IN (<filter-ID>)
Definitely counter-intuitive IMO...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
What is your Jira version? I just tried on Cloud and it worked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try to query like this:
summary !~ "411*"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
could this have something to do with word stemming
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you give me examples of issues which you can see, but they should not be selected?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The summary for a few issues that appear in the search results but should not:
Issue 101 - 85411 - Something is wrong
Issue 102 - 85411 - Something is wrong again
85411 - Something is still wrong
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That is right. You are not able to filter these issues out because Jira looks from the beginning of the words in the summary field.
For example
Issue 101 - 41123434 - Something is wrong
would work.
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.