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