I'm trying to run a search filter to list:
Here's the filter being used:
project = "<PROJECTNAME>" AND labels = <LABEL> AND status != ("STATUS1", "STATUS2") order by created DESC
This returns an error despite all the indications that adding the statuses inside brackets should work.
If I run a search on each status individually, it works as expected. Can you help me with the syntax required to get the results in a single list. Many thanks.
Hi @Colum McAndrew ,
Any of these should probably work.
Cheers, Kevin.
Thanks @Kevin Johnson The later example worked.
BTW I meant to say that I wanted to exclude two statuses, not include. My bad, and I amended the original post. For the benefit of anyone following this, it was just a simple case of using status != rather than status =.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
= instead of != should work and you can also use "not in".
Cheers, Kevin.
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.