I want to search issues which do not contain a specific term which is written in the summary

Sri January 7, 2019

I want to search list of issues which do not contain a specific term which is written in the summary. For example, if a specific term is written in the summary as below.

1.  <> / One / <>

2. <> / One / <>

3. <> / Two / <>

4. <> / Two / <>

5. <> / Two / <>

In the above example, I want to list out only defects with the text Two and exclude One.

1 answer

1 accepted

2 votes
Answer accepted
MoroSystems Support
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 7, 2019
Sri January 7, 2019

Thanks a lot. It helps.

MoroSystems Support
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 7, 2019

Great to hear it helped. Please could you accept the answer to let other people know for future use.

Have a nice day,

Milos

Joseph Jaganathan June 10, 2022

!~ doesn't work for text

Like # people like this
Justine October 25, 2022

What about if I do have multiple DOES NOT contain values? What is the sytanx for it? How do I separate value1 and value2? For example, Summary !~ "value1 value2" ? Is this correct? 

LaNoue Austin November 4, 2022

@Justine  

Returns all issues missing either of value1 and value2 in Summary field:

Summary !~ "value1" OR Summary !~ "value2"

Returns all issues missing each of value1 and value2 in Summary field:

Summary !~ "value1" AND Summary !~ "value2"

Suggest an answer

Log in or Sign up to answer