This may be a bit basic, as I’m very new to obsidian (and newer still to the help forum here) but I am having so much trouble trying to come up with a list of all of the files I’ve created today, to put into a template for a daily note. I’m not sure if I’m missing a necessary plug in, but I’ve tried a bunch of people’s suggestions throughout forums, and none of the code blocks actually seem to… do anything.
Things I have tried
I’ve got these set up (one on edit, one on read) but on read, they don’t show any lists! Just sit there.
As it was mentioned above, you need to have the Dataview plugin installed, and your queries need to be code blocked.
This is my variant of query with some differences:
I use property created for filtering notes instead of .cday metadata (in case of corrupting metadata while transferring files between different file systems)
Shows the time when notes were created
Nested in a callout for a fancy view and collapsing
Code:
## Statistics
> [!note|noicon]+ New notes today
>
> ```dataview
> LIST dateformat(created, "HH:mm")
> WHERE dateformat(created, "yyyy-MM-dd") = dateformat(this.created, "yyyy-MM-dd")
> SORT created DESC
> ```