I have text like the following in Description.
|h4. Satisfaction Score|5|
|h4. Was Document Helpful|Yes|
As obvious, these are two rows of a table. Every issue gets different value in the range of 1-7 in Satisfaction Score. Now, when I try to find issues with value 5, I get the above. But I get the above even I search for issues using JQL
description ~ "Satisfaction Score|4|" OR description ~ "Satisfaction Score|3|" OR description ~ "Satisfaction Score|2|" OR description ~ "Satisfaction Score|1|"
How do I fix the query to return exact matches for score? And what am I doing wrong?
Try
description ~ "\"Satisfaction Score|4|\"" OR description ~ "\"Satisfaction Score|3|\"" OR description ~ "\"Satisfaction Score|2|\"" OR description ~ "\"Satisfaction Score|1|\""
It worked! Thank you so much. I totally missed the escape character.
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.