Wildcard search Dataview

  1. First you need to adopt one of the two syntaxes for multiple values in frontmatter field:
    a) MeetingPerson: [Jan, Tom, Jake, Jess]
    b)
MeetingPerson:
  - Jan
  - Tom
  - Jake
  - Jess

*(attention: need two spaces before “-”)

  1. About the dataview query, depends what you want. For example, a list of meetings where Tom participated:
```dataview
LIST
WHERE contains(MeetingPerson, "Tom")
```
1 Like