diff --git a/100. Managerial Pages/1. Task Dashboard.md b/100. Managerial Pages/1. Task Dashboard.md index c442bc8c..6090ecb3 100755 --- a/100. Managerial Pages/1. Task Dashboard.md +++ b/100. Managerial Pages/1. Task Dashboard.md @@ -8,28 +8,40 @@ tags: ## Undated ```dataview TASK -where !completed +where !completed + and status != "-" + and status != " " + and !due +group by file.link ``` ## Overdue ```dataview TASK -where !completed and status != "-" and status != " " +where !completed + and status != "-" + and status != " " + and due < date(today) group by file.link ``` - - ## Next 2 Weeks -```tasks -not done -(due after yesterday) AND (due before in two weeks) -sort by due -group by folder +```dataview +TASK +where !completed + and status != "-" + and status != " " + and due > date(today) + and due < date(today) + dur(2 w) +group by file.link ``` ## On The Horizon ```tasks not done -due after in two weeks +due after two weeks sort by due group by folder ``` + +- [<] 📅 2024-09-16 +- [<] 📅 2024-09-30 +- [<] 📅 2024-09-01 \ No newline at end of file