How to convert file.folder to a link

I need a dataview query that returns a table of links to flies containing a tag #focus and also links to the folders where the file is. So far, I have this query, that provides a link to the file but only the folder name. How do I convert the folder name to a link to that folder?

file.folder.link doesn’t seem to exist…

Thanks

```dataview
TABLE WITHOUT ID 
	file.folder as "Folder",
	file.link as "Focus page" 

	WHERE contains(tags, "focus")
	
	SORT file.cday asc 
```

There isn’t any link to folders, only to notes (or heading and blocks within notes).

That explains why I couldn’t find it then :wink:

Thanks

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