Dataview is broken?

what’s going on here? It’s not showing the creation date like it should…?



The file cday and ctime are not necessarily going to match with a field called created. If you want that field, you need to query it directly:

```dataview
TABLE
file.cday,
file.ctime,
created
WHERE file.name = this.file.name
LIMIT 50
```