Displaying list of attendees in note

What I’m trying to do

I am working on a meeting template where I have added the attendees in a list in properties. I would also like the same attendees to be listed in the note for easy export.
image

Things I have tried

I have managed to get the list to work with dataview

LIST WITHOUT ID attending
WHERE file = this.file

But I get an extra dot in the list since I assume it is showing the list in another list.
image

What would be a good way remove the extra dot? Or is there another solution to grabbing the names off of the properties?

You simply need to flatten the result by attending:

LIST WITHOUT ID attending
WHERE file = this.file
FLATTEN attending

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