50 lines
694 B
Markdown
Executable File
50 lines
694 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 !due
|
|
group by file.folder
|
|
```
|
|
## Overdue
|
|
---
|
|
```dataview
|
|
TASK
|
|
where !completed
|
|
and status != "-"
|
|
and due
|
|
and due < date(today)
|
|
sort due asc
|
|
group by file.folder
|
|
```
|
|
## Next 2 Weeks
|
|
---
|
|
```dataview
|
|
TASK
|
|
where !completed
|
|
and status != "-"
|
|
and due
|
|
and due > date(today)
|
|
and due < date(today) + dur(2 w)
|
|
sort due asc
|
|
```
|
|
## On The Horizon
|
|
---
|
|
```dataview
|
|
TASK
|
|
where !completed
|
|
and status != "-"
|
|
and due
|
|
and due > (date(today) + dur(2 w))
|
|
sort due asc
|
|
group by dateformat(due, "yyyy-MM")
|
|
```
|