Possible to generate dynamic list headers or sections? #1606
-
So I have a simple query that I'm using as an index of all my daily notes, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think you can achieve better results in dataviewjs. LIST rows.file.link
FROM "Journal/2022"
SORT file.cday
GROUP BY dateformat(file.cday, "MMMM")
SORT rows.file.cday ASC I use the creation date ( |
Beta Was this translation helpful? Give feedback.
-
This puts me on the right track. TYVM! This is what I went with which is gives me the exact results I was looking for.
|
Beta Was this translation helpful? Give feedback.
I think you can achieve better results in dataviewjs.
But in regular dataview, try this:
I use the creation date (
file.cday
) because I don't know the format of the daily notes title. (if in formatYYYY-MM-DD
you can usefile.day
instead offile.cday
)