Issue with a filter

Owen Quesada June 17, 2016

Hi!

 

 I built this simple query for my dashboard:

(reporter = currentUser() OR watcher in (currentUser())) AND project = MediaBin AND (status != "VERIFIED, CLOSED" OR status != "Closed") ORDER BY key DESC

However, I'm gettng resulting tickets with the state: "VERIFIED, CLOSED" anyways. I don't get any error msg. I tried to look at your online KB, but found nothing about. How can I prevent tickets with this given state to show up at my results?

 

Thanks...

2 answers

1 accepted

0 votes
Answer accepted
Peter Geshev
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.
June 17, 2016

Try the following jql (reporter = currentUser() OR watcher in (currentUser())) AND project = MediaBin AND (status not in ("VERIFIED, CLOSED", "Closed")) ORDER BY key DESC

0 votes
Owen Quesada June 17, 2016

That was it. Thank you so much...

Suggest an answer

Log in or Sign up to answer