Answer the question
In order to leave comments, you need to log in
How to display only completed tasks in the last week in the Done (Kanban) column?
There are a lot of piles in the last "Done" column of the Kanban board. At the top of this list are far from the last tasks.
I would like to hide old tasks from the column and leave, say, completed tasks for the last week or the last 10 from the list - how can this be done?
Answer the question
In order to leave comments, you need to log in
It is enough to adjust the filter for the board so that only the necessary tasks get into it.
project = "PROJECT" AND (Status IN (New, "In Progress") OR ((status = Resolved) AND (updatedDate > -7d))) ORDER BY Rank ASC
project = "PROJECT" AND (Status IN (New, "In Progress") OR (status changed to "Resolved" after -7d)) ORDER BY Rank ASC
That is, all tasks with statuses New, In Progress and tasks with status Resolved, updated (usually this is just a change in status to Resolved) for the last 7 days.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question