~ [[Calendar]]
> [!calendar] [[Days]] | **[[Records]]** | [[Reviews]]
> [!boxes] [[Events]] | [[Ideas]] | [[Meetings]] | [[Nice Things]]
Showing all notes in the Records folders if it has a name with the date like `YYYY-MM-DD`.
```dataview
TABLE WITHOUT ID
choice(type = "record" AND record-type = "event",
"🎪 " + file.link,
choice(type = "record" AND record-type = "idea",
"💡 " + file.link,
choice(contains(file.path, "Calendar/Records/Logs"),
"🪵 " + file.link,
choice(type = "record" AND record-type = "meeting",
"☎️ " + file.link,
choice(type = "record" AND record-type = "nice-thing",
"🌈 " + file.link,
file.link))))) as "Records",
type as "Parent Folder"
WHERE
regextest("\\d{4}-\\d{2}-\\d{2}", file.name)
WHERE type = "record"
SORT regexreplace(file.name, ".*?(\\d{4}-\\d{2}-\\d{2}).*", "$1") DESC
LIMIT 44
```
---
If you are curious, here's [[how to remove the emojis from the rendered views]].