Hi all,
I have a one note per task workflow. Tasks look like this:
TASK Number
tags: task
creation_date: 2023-03-23 20:32:24
project_name:: NAME_OF_LINKED_PROJECT
task_link:: LINK_TO_TAKS (for convenience in dataview output)
task_description:: DESCRIPTION
task_status:: WAITING
task_priority:: MEDIUM
task_assigned_team:: TEAM_X
task_assigned_person:: PERSON_Y
task_due:: 2023-03-26
In my Daily note I’ve got a dataview query to have an overview of my todo’s:
TABLE WITHOUT ID task_description as Task, project_name as Project, task_link as L , task_priority as Priority, task_status as Status, task_due as Due
FROM "tasks"
WHERE contains(task_assigned_team, "MYSELF") AND task_status != "done"
Sort task_due Asc
The output looks like this:
How can i get the due date to be shown in my query?
What I’m trying to do
Show the inline date field in my dataview query.
Things I have tried
Serveral modifications to the query ( such as date(task_due), etc.).
Not sure if this affects the Dataview behaviour: all tasks are within one “tasks” folder and part of a DB Folder.