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

50 lines
737 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
```
```tasks
not done
due in today two weeks
```
## On The Horizon
```tasks
not done
due after two weeks
sort by due
group by folder
```
- [<] 📅 2024-09-16
- [<] 📅 2024-09-30
- [<] 📅 2024-09-01