What I’m trying to do
I saw this topic where the OP does a neat display of daily trends. I would like to do something very similar, but with my weekly habit tracking.
I have a weekly note that has a list of habit tasks within a heading called “Habits”. I would like to create a query that shows the count of completed tasks from this week’s note compared to the count of completed tasks last week. Also, this query would be in my dashboard and not my weekly note.
Things I have tried
I was able to create a query that mostly gets there, but as two rows with half the data on each row as such:
|Habits|
|5 → 0 ▼|
|0 → 6 ▲|
However, this has the previous week’s value (5) on one row with the current week’s value (6) on the second row. I need the output to be a single row with the 5 and 6.
The above is using this query:
TABLE WITHOUT ID
completedLastWeek + " -> " + completedThisWeek + " " + choice( completedLastWeek > completedThisWeek, "▼", choice( completedLastWeek < completedThisWeek, "▲", "◌" )) AS "Habits"
FROM "@Journal/Weekly/2025"
WHERE dateformat(file.cday, "W") = dateformat(date(today), "W") OR dateformat(file.cday, "W") = dateformat(date(today) - dur(7 days), "W")
FLATTEN length(filter(file.tasks, (i) => meta(i.section).subpath = "Habits" AND i.status = "x" AND dateformat(date(i.completion), "W") = dateformat(date(today), "W"))) as completedThisWeek
FLATTEN length(filter(file.tasks, (i) => meta(i.section).subpath = "Habits" AND i.status = "x" AND dateformat(date(i.completion), "W") = dateformat(date(today) - dur(7 days), "W"))) as completedLastWeek
This was mostly from trial and error, but I’m hoping maybe a clever use of FLATTEN or something can get me a single row back with the correct values.
I think I could probably achieve what I need within the current weekly note (each week would have a dataview that includes current and previous week similar to the original post noted above). I could then do an embedded link to that query from my dashboard, but I’m hoping I can create a standalone query so I don’t have to create another query in each weekly note.
Any thoughts?
Thanks!