I am trying to only display open tickets in my kanban board with specific issue types. Also I want only to show the last 3 days in the done/drop/complete/close/etc. column. But I want to separate swimlanes for Production Issue from Requests.
Here is my JQL query for my Production Issue swimlane:
(status != Dropped AND status != Closed AND status != Complete AND status != Done_a AND status != Done AND issuetype ="Production Issue") OR updated >= -3d ORDER BY Rank ASC
Another swimlane I have is another issue type like Bug.
(status != Dropped AND status != Closed AND status != Complete AND status != Done_a AND status != Done AND issuetype = Request) OR updated >= -3d ORDER BY Rank ASC
Somehow this part of the query doesn't work - AND issuetype ="Production Issue"
Anything I missed?
I think you should swap AND and OR in the queries.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.