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

48 lines
776 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 tags
```
## Overdue
```dataview
TASK
where !completed
and status != "-"
and status != " "
and due < date(today)
group by tags
```
## Next 2 Weeks
```dataview
TASK
where !completed
and status != "-"
and status != " "
and due > date(today)
and due < date(today) + dur(2 w)
group by tags
```
## On The Horizon
```dataview
TASK
where !completed
and status != "-"
and status != " "
and due > date(today) + dur(2 w)
group by tags
```
<mark style="background: #FFB8EBA6;"></mark>
- [<] 📅 2024-09-16
- [<] 📅 2024-09-30
- [<] 📅 2024-09-01