37 lines
530 B
Markdown
Executable File
37 lines
530 B
Markdown
Executable File
---
|
|
creation date: 2024-08-06
|
|
modification date: Tuesday 6th August 2024 08:47:22
|
|
tags:
|
|
- Management
|
|
---
|
|
## Overdue Tasks
|
|
|
|
```dataview
|
|
TASK
|
|
where !completion and status != "-"
|
|
group by file.link
|
|
```
|
|
|
|
|
|
## Tasks in the next 2 Weeks
|
|
```tasks
|
|
not done
|
|
(due after yesterday) AND (due before in two weeks)
|
|
sort by due
|
|
group by folder
|
|
```
|
|
|
|
## Tasks beyond 2 Weeks
|
|
```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
|
|
``` |