Hello
Need help correcting my search issue project = MBU AND issuetype in (Fault, "Fiber Cut", Outage, "Routing Request", Support, "Vendor Issue") AND status = Closed ORDER BY created DESC - want to exclude the XX test in the tittle of . How do i fix?
Not sure if I have understood but if you want to exclude issues with certain text in summary you might try
project = MBU AND issuetype in (Fault, "Fiber Cut", Outage, "Routing Request", Support, "Vendor Issue") AND status = Closed AND summary !~ "test" ORDER BY created DESC
That said I would like to advice taking into account items where "test" is actually valid to avoid filtering out important stuff, because test is rather a universally common word.
Regards,
Radek
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.