< [[<% tp.date.now("YYYY-[W]WW", -7) %>]] | [[<% tp.date.now("YYYY-[W]WW", 7) %>]] >
<% tp.file.cursor() %>
## outputs
## sentiment
# created this week
*limit 20*
```dataview
table without id
file.link as "note",
up as "up",
topic as "topic",
dateformat(file.ctime, "M/d") as "date"
from ""
where dateformat(file.ctime, "yyyy-'W'WW") = this.file.name
and file.name != this.file.name
sort file.ctime desc
limit 20
```
# last modified this week
*limit 20*
```dataview
table without id
file.link as "note",
up as "up",
topic as "topic",
dateformat(file.ctime, "M/d") as "date"
from ""
where dateformat(file.mtime, "yyyy-'W'WW") = this.file.name
and dateformat(file.ctime, "yyyy-'W'WW") != this.file.name
and file.name != this.file.name
sort file.mtime desc
limit 20
```
**MONTH** - [[per/month/<% tp.date.now("YYYY-MM", 0, tp.file.title, "YYYY-[W]WW") %>]]
**YEAR** - [[per/year/<% tp.date.now("YYYY", 0, tp.file.title, "YYYY-[W]WW") %>]]