We use releases but only for stories. I would rather not version our tasks or sub-tasks as that would result in inaccurate data, so I need to hide all Tasks and Sub-Tasks once they hit the done column.
Here's my query:
project = BOOK AND (type in (Task, Sub-task) AND status != DONE OR type != task)
It's correctly hiding Tasks but not Sub-tasks, any ideas?
I got this working (Thanks to @Ollie Guan 's post above)
project = BOOK AND (type in (Task, Sub-task) AND status != DONE OR type not in (task,sub-task))
So what do you expect to see is that the Done column in Kanban does not contain the completion status of Task and Sub-Task?
I am not sure if you meet your requirements, you can try the following statement, or modify it according to this method.
(project = XXX and type= story) or (project = XXX and (type in (Task, Sub-task) AND status != DONE))
Hope it works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That didn't really work for me as I wanted ALL other items shown (not just stories.) While I could list them out individually, if a new one gets added to the project I want it to show by default. HOWEVER, your query showed me where mine was at fault and I have it working now. Thank You! :D
project = BOOK AND (type in (Task, Sub-task) AND status != DONE OR type not in (task,sub-task))
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.