I'm trying to run a search filter to list:
- All tickets on a specific project
- That do not have one of two statuses
- Contain a specific label.
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.