Skip to content

List all tasks that have a duedate (a meta data) set and are due to a specific date or before

List tasks that are due today or a specific day

Basic

Usage in daily notes

When used in a daily note thats named in format YYYY-MM-DD, you can replace the specific date information (date("2022-11-30")) with this.file.day

TASK 
WHERE !completed AND duedate AND duedate <= date("2022-11-30") AND contains(text, "due")

Variants

Show tasks that are due today or earlier

TASK 
WHERE !completed AND duedate AND duedate <= date(today) AND contains(text, "due")