Dynamic dataview based on propertie

Hi all,

I tried ti search but I connot find a solution which I get working.

Problem:

  • I have a not with a specific property which identifies a customer or project
  • In this note I would like to have a dataview which contains all the notes with the data out of the property of the “Master-Note”
  • If possibe this should be dynamic, which each Master-Note the dataview should search for the notes with the different property

Thanks for you help

René

What I’m trying to do

Things I have tried

Given note A with these properties:

---
yourProperty1: a
yourProperty2: b
---

and note B with this property:

---
yourLink: "[[note A]]"
---

this query in note B will display note A’s properties:

```dataview
TABLE yourLink, yourLink.yourProperty1, yourLink.yourProperty2
WHERE file = this.file
```

That requires being selective about which properties to show. Changing the first line to this will unselectively show all of Note A’s properties:

TABLE yourLink.file.frontmatter

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