Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Can't hide Sub-Tasks from the DONE column in Kanban board

Delphine Brisepierre February 28, 2019

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?

2 answers

1 accepted

1 vote
Answer accepted
Delphine Brisepierre March 1, 2019

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))

0 votes
Ollie Guan
Community Champion
February 28, 2019

Hi @Delphine Brisepierre ,

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.

Delphine Brisepierre March 1, 2019

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))

Suggest an answer

Log in or Sign up to answer