Help with Dataview Query -

I am trying to create a dataview query that shows files in a folder (and subfolders), with a column that provides the folder name each item exists in. I’ve written it like this

dataview
table folder as “Folder”
from “folder name”

All the files show up correctly in the first column, but the second column for “folder” only shows up with empty values.

What I am doing wrong? Thanks!

Hello.

Does this work more as you need?

```dataview
table file.folder as "Folder"
from "folder name"
Sort file.folder ASC
```
1 Like

Thank You :heart:!!!

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.