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
```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