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

36 lines
481 B
Markdown
Executable File

---
creation date: 2024-08-06
modification date: Tuesday 6th August 2024 08:47:22
tags:
- Management
---
# Tasks
## Undated
```dataview
TASK
where !completed
```
## Overdue
```dataview
TASK
where !completed and status != "-" and status != " "
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
```
## On The Horizon
```tasks
not done
due after in two weeks
sort by due
group by folder
```