I have a system of cascading periodic notes (Daily ==> Weekly ==>Monthly etc.). And I have bunch of tasks. While I’m still choosing between having one file per task and having “inline tasks” in notes, I’m currently favouring the latter approach. So the tasks would be something like
I would then have a Dataview-query in the relevant project-file as well as the daily note of the DoDate, showing any related tasks. For example, the one in daily note looks like this:
TASK
FROM ""
WHERE DoDate = this.file.day
And it works fine.
Now, I would like to have a weekly note that showed all tasks I completed during the week. How could I do that? It needs to be a fixed week, from Monday to Sunday, so dynamic range (closed in the last 7 days) doesn’t work. I have a link from and to the daily note to the weekly note, so could I somehow refer to the dv-queries in the daily notes? Or, as the filenames of the daily notes are basically dates, use them as date-values?
The way I refer to the days in the weekly note is like this:
Days:: [[{{monday:YYYY-MM-DD}}]], [[{{tuesday:YYYY-MM-DD}}]],etc.
could those be used for the query, or is there another approach? As I basically need a list of tasks that were closed on those dates.