- 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 “-”)
- About the dataview query, depends what you want. For example, a list of meetings where Tom participated:
```dataview
LIST
WHERE contains(MeetingPerson, "Tom")
```