Hello,
I have the working advanced search
text ~ "Infosheet"
Now I want to find all issues that do NOT match this search. How do I do this? All my trails to add NOT or ! to this search either failed with the syntax or lead to no results (which is wrong)
Thanks,
Christian
Hi @Christian Barth [X], and welcome to the Community!
the keyword text searches across multiple field and does not support searches with not. However, if you adapt your search to target specific fields like Summary or Description, you can use this syntax:
description !~ Infosheet AND Summary !~ Infosheet
Hi @Christian Barth [X] -- Welcome to the Atlassian Community!
Adding to what Walter suggests, when checking for something which does NOT match a value consider if the field could be empty. Such as for Description. Extending the above example that would be:
(description !~ Infosheet OR description IS EMPTY)
AND Summary !~ Infosheet
Best regards,
Bill
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.