I know this question is asked many many times here, but in my case it still doesn’t work.
I will list the functions i tried below.
```dataview
list from ""
WHERE file.cday = date(this.file.name) AND file.name !=(this.file.name)
```
This shows in my template that there are no results and in my daily note it shows the error * invalid reference date format, try specifiying one with the argument 'reference_format'*
list from ""
where date(file.ctime) = date(this.file.name)
here I have the same outcome as the one above.
```dataview
list from ""
where file.name = date(file.ctime, "YYYY-MM-DD")
```dataview
list
from ""
where date(file.ctime) = date(today)
List FROM "" WHERE file.cday = date("<%tp.date.now("YYYY-MM-DD")%>") SORT file.ctime asc
Can someone tell me what i am doing wrong?