~ [[Calendar]]
> [!calendar] **[[Days]]** | [[Records]] | [[Reviews]]
Showing the most recent daily notes, based on how they are named.
```dataview
TABLE WITHOUT ID
file.link as "Daily Notes",
type as "Parent Folder"
WHERE type = "daily-note"
AND regextest("\\d{4}-\\d{2}-\\d{2}", file.name)
SORT regexreplace(file.name, ".*?(\\d{4}-\\d{2}-\\d{2}).*", "$1") DESC
LIMIT 40
```