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

715 B
Executable File

creation date modification date tags
2024-08-06 Tuesday 6th August 2024 08:47:22
Management

Tasks

Undated


TASK
where !completed 
	and status != "-" 
	and !due
group by file.folder

Overdue


TASK
where !completed 
	and status != "-" 
	and due
	and due < date(today)
sort due asc
group by file.folder 

Next 2 Weeks


TASK
where !completed 
	and status != "-" 
	and due
	and due > date(today)
	and due < date(today) + dur(2 w)
sort due asc
group by file.folder

On The Horizon


TASK
where !completed 
	and status != "-" 
	and due
	and due > (date(today) + dur(2 w))
sort due asc
group by dateformat(due, "yyyy-MM")