Hiding done tasks in kanban view after they have aged

In kanban view, the done column gets long after some time. Is there a way to factor the age when they were moved to the done state and then filter them out (e.g. after 2 weeks)?

1 Like

Yeah!

Run a Modified() formula on the status column which organizes your Kanban

Then run a filter on your table that says:

Hey Coda, show me only rows in my table where the status column is not equal to Done or the status column IS equal to done and it’s been modified in the past week

Aka:

Status!= Done OR (status = Done AND ModifiedColumn > today() - 7)
2 Likes

Thank you. Worked perfectly!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.