Automate Base Fill-in for Meeting Notes

I’m probably missing something obvious here, but I want to add a base into each of my Person notes that will automatically show any Meeting notes tagged with them. I use Templater. How do I do this automatically without needing to tweak the filters of each person’s base?

I use this code to add all related notes of a person … maybe this helps.

filters:
  and:
    - file.hasLink(this.file.name)
    - '!type.contains("Person")'
views:
  - type: table
    name: Notizen
    order:
      - file
      - area
      - topic
      - status
    sort:
      - column: note.status
        direction: DESC
      - column: file.name
        direction: ASC

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