How to filter tickets using keywords
Hi @Candy Tricia Khohliwe , I'm not sure precisely what you are looking for here. If you are trying to find all issue that have a certain word in a text field you can use JQL. For example...
project = abc and text ~ "hello"
Would find every issue where the word "hello" is found in text fields, e.g. Summary, Description, comments
you can further restrict to a specific field, for example...
project = abc and Summary ~ "hello"
if you have a custom text field then the following would work...
project = abc and myfield ~ "hello"
What about multiple keywords?
First please answer if the field you wish to search is a text field?If so which field(s)?
example...
text ~ "keyword1 keyword2 keyword3"
Would return any issue where a text field in that issue contains any of the above key words.
I want the keywords to be identified fro Summary, Comments and Description fields
It looks like you're new here. Sign in or register to get started.