From c7ee6ee3ed6660f8e72634ffc2fef35fd04eadb2 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Fri, 13 Sep 2024 13:38:01 -0400 Subject: [PATCH] vault backup: 2024-09-13 13:38:01 --- 100. Managerial Pages/1. Task Dashboard.md | 32 +++++++++++++++------- 1 file changed, 22 insertions(+), 10 deletions(-) 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