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

776 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 status != " "
	and !due
group by tags

Overdue

TASK
where !completed 
	and status != "-" 
	and status != " "
	and due < date(today)
group by tags

Next 2 Weeks

TASK
where !completed 
	and status != "-" 
	and status != " "
	and due > date(today)
	and due < date(today) + dur(2 w)
group by tags

On The Horizon

TASK
where !completed 
	and status != "-" 
	and status != " "
	and due > date(today) + dur(2 w)
group by tags

  • [<] 📅 2024-09-16
  • [<] 📅 2024-09-30
  • [<] 📅 2024-09-01