vault backup: 2024-09-13 13:38:01

This commit is contained in:
Dane Sabo 2024-09-13 13:38:01 -04:00
parent 1d4eeba885
commit c7ee6ee3ed

View File

@ -8,28 +8,40 @@ tags:
## Undated ## Undated
```dataview ```dataview
TASK TASK
where !completed where !completed
and status != "-"
and status != " "
and !due
group by file.link
``` ```
## Overdue ## Overdue
```dataview ```dataview
TASK TASK
where !completed and status != "-" and status != " " where !completed
and status != "-"
and status != " "
and due < date(today)
group by file.link group by file.link
``` ```
## Next 2 Weeks ## Next 2 Weeks
```tasks ```dataview
not done TASK
(due after yesterday) AND (due before in two weeks) where !completed
sort by due and status != "-"
group by folder and status != " "
and due > date(today)
and due < date(today) + dur(2 w)
group by file.link
``` ```
## On The Horizon ## On The Horizon
```tasks ```tasks
not done not done
due after in two weeks due after two weeks
sort by due sort by due
group by folder group by folder
``` ```
- [<] 📅 2024-09-16
- [<] 📅 2024-09-30
- [<] 📅 2024-09-01