< [[<% tp.date.now("YYYY-MM-DD", -1, tp.file.title, "YYYY-MM-DD") %>]] | [[<% tp.date.now("YYYY-MM-DD", 1, tp.file.title, "YYYY-MM-DD") %>]] >
# created today
```dataview
table without id
file.link as "note",
up as "up",
topic as "topic",
dateformat(file.ctime, "HH:mm") as "time"
from ""
where dateformat(file.ctime, "yyyy-MM-dd") = this.file.name
and file.name != this.file.name
sort file.ctime desc
```
# last modified today
```dataview
table without id
file.link as "note",
up as "up",
topic as "topic",
dateformat(file.mtime, "HH:mm") as "time"
from ""
where dateformat(file.mtime, "yyyy-MM-dd") = this.file.name
and file.name != this.file.name
and dateformat(file.ctime, "yyyy-MM-dd") != this.file.name
sort file.mtime desc
```
**WEEK** - [[per/week/<% tp.date.now("GGGG-[W]WW", 0, tp.file.title, "YYYY-MM-DD") %>]]
**MONTH** - [[per/month/<% tp.date.now("YYYY-MM", 0, tp.file.title, "YYYY-MM-DD") %>]]
**YEAR** - [[per/year/<% tp.date.now("YYYY", 0, tp.file.title, "YYYY-MM-DD") %>]]