Using Dataview to view Data in own templated file

What I’m trying to do

I am trying to create a Dataview Table which shows properties of Physical therapy exercises. I want to have this repeatable for templates.

Hardcoding this works fine:

TABLE WITHOUT ID part, number, frequency, equipment, this.file.name
FROM "Meta/Templates/pt_template"

Where at the bottom of the document I have:

part::
number::
frequency::
equipment::

This does not work:

FROM file.name = this.file.name

This works, but I am not sure if it is too slow. It seems like it is likely doing an extra unnecessary search.

FROM "Meta"
WHERE file.name = this.file.name

Hello.

Can you just do:

```dataview
TABLE 
part
, number
, frequency
, equipment
WHERE file.name = this.file.name
```

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