Create a calendar view that marks when I do a thing

What I’m trying to do

I would like to see, in a calendar view, how often I do a think (such as read). Not how much or how long, they ‘yes/no’.
I’d like the data to be fed from my daily note.

Things I have tried

table without id file.name as "Date", 
Activities.Read as "read"
from "Daily Notes"
where Activities.Read = "Yes"
sort file.name asc

Shows no results although I do have the below in my daily note

Activities

  • Read: Yes
  • Workout: Yes
  • Meditated: No

If Read is a property in your daily note, you should use just that, and not Activities.Read, so try this variant:

```dataview
TABLE WITHOUT ID file.name as "Date", Read 
FROM "Daily Notes"
WHERE Read = "Yes"
SORT file.name
```