vault backup: 2024-09-13 13:13:58

This commit is contained in:
Dane Sabo 2024-09-13 13:13:58 -04:00
parent cd1d993e6a
commit 1d4eeba885

View File

@ -4,8 +4,13 @@ modification date: Tuesday 6th August 2024 08:47:22
tags:
- Management
---
## Overdue Tasks
# Tasks
## Undated
```dataview
TASK
where !completed
```
## Overdue
```dataview
TASK
where !completed and status != "-" and status != " "
@ -13,7 +18,7 @@ group by file.link
```
## Tasks in the next 2 Weeks
## Next 2 Weeks
```tasks
not done
(due after yesterday) AND (due before in two weeks)
@ -21,17 +26,10 @@ sort by due
group by folder
```
## Tasks beyond 2 Weeks
## On The Horizon
```tasks
not done
due after in two weeks
sort by due
group by folder
```
## Tasks without a target date
```tasks
not done
due before today
sort by due
group by folder
```