Is it possible to use Jquery to search for issues without a status closed or done.
If i try this with the following statement my other filter option gets ignored like issuetype.
project = x and issuetype = story and status != closed or status != done
Anyone found a solution to this?
Below is the query
project = x and issuetype = story and status not in (closed, done).
You can also write
project = x and issuetype = story and resolution is empty
Thank you for the swift reply
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ahhh the page was not refreshed when i posted my answer! :P
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the logical expression needs to update such that:
project = x and issuetype = story and status != closed and status != done
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @jeroen.kuijper ,
Try it like this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this doesn't work for me (
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If this doesnt work. I have found that if the status is multipart, as in (two words) then use quotation for the two word entries. for example ... try this..
project x and issuetype = story and status in ("to do", closed)
This worked for me. ^
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.