What I’m trying to do
I am trying to query my kanban board with dataview and pull any cards that have the tag todo
so I can see any cards that I have something I need to do on.
Things I have tried
I found another post here that was old that helped me get all my cards to display but I want to limit them. I have this query:
dataview
TABLE WITHOUT ID
regexreplace(Tasks.text, "\[.*$", "") as Task,
meta(Tasks.section).subpath as "Status",
file.link as "File"
FROM #todo
Flatten file.tasks as Tasks
My Kanban is here:
Also, is there a way to just pull cards that have a date that is more than 5 days from today and display those in a separate reference?
Please help!