How to archive tickets on Kanban view?

I am using the Kanban view. Sometimes I keep some tickets o Done to remind me that they are actually done. But at some point I dont want to them again. How can I archive them? They are gone on list view.

Hi, we’re doing something similar, not exactly the same though, by using filters. Basically edit your Kanban View and apply a filter, something like that:

done = false || (done = true && doneAt > 'now-14d')

This will show all tasks that are not done or have been marked done in the last 14 days, after which they automatically go away. There’s an additional list view which shows done tasks for us, but that’s obviously optional. Maybe that helps?

1 Like