Dataview table backlinks as column

Is there a way to create a dataview table that would display the links in each of the relevant files?

I have 1 file for each box set that includes wiki links to the films in the set (see screenshot below), and I’d love a table view that could show the box sets with the list of films in each one: Example:

dataview
table "links within the file"
from Film Media/Box Sets

Result I’m looking for:

File                       "links within the files listed in col 1"

Samurai Trilogy Box Set     Samurai 1: Musashi Miyamoto
                            Samurai 2: Duel at Ichijoji Temple
                            Samurai 3: Duel at Ganryu Island

Jean Vigo Box Set           A Propos de Nice
                            L'Atalante
                            Taris roi de l'eau
                            Zero de conduite

I’ve tried pretty much everything I could think of, to no avail.

This is what I’m working with. You will notice that on the right, my Box Set page includes the links to the films within that box set. I want those to show up in the table.

Supposing that yours “wiki links” are internal links to other pages, then you can use the metadata file.outlinks (ALL outgoing links from a file).
You can try this:

```dataview
TABLE file.outlinks as Links
FROM Film Media/Box Sets
SORT file.name ASC
```

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