Obsidian/100. Managerial Pages/1. Task Dashboard.md

37 lines
547 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 !completed and status != "-" 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
```