I am using the following filter:
project = NEW AND issuetype = Sub-task AND status != Done AND text ~ ktg OR text ~ kwg ORDER BY summary ASC, description DESC, due DESC, created DESC
I have also tried the same filter but with resolution instead of status.
The ticket in this image https://imgur.com/a/o8VDN4s shows up in the results even though it is done.
How do I troubleshoot this?
TIA
Might need to play with some parentheses looks like its catching that "OR text ~ kwg " statement
Try this:
project = NEW AND issuetype = Sub-task AND status != Done AND (text ~ ktg OR text ~ kwg) ORDER BY summary ASC, description DESC, due DESC, created DESC
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.