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

48 lines
752 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
and status != "-"
and status != " "
and !due
group by file.link
```
## Overdue
```dataview
TASK
where !completed
and status != "-"
and status != " "
and due < date(today)
group by file.link
```
## Next 2 Weeks
```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
```dataview
TASK
where !completed
and status != "-"
and status != " "
and due > date(today) + dur(2 w)
group by file.link
```
- [<] 📅 2024-09-16
- [<] 📅 2024-09-30
- [<] 📅 2024-09-01