mod55
1
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
dawni
2
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
system
Closed
3
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.