Table for all the inline fields that contain a specific note

Hi there,

I’m a manager and would like to collect feedback snippets about the people I work with. I would need a system for that, and I thought of Obsidian.

My current approach is that I have a note per person ([[Person A]], [[Person B]], etc.), and I use the inline field Feedback:: to collect the actual feedback in the daily notes, that I would like to share with the person as soon as possible. Now, I would like to create a dataview query for fetching all the Feedback inline fields related to the person’s note and display it in a table. I still can’t get my head around the dataview syntax or get it to work. Essentially, the way I understand it, it would be something along those lines:

TABLE file.title, Feedback 
FROM "Daily Notes" 
WHERE Feedback contains "[[Person A]]"

Any ideas on how to get it to work? Alternative approaches how to solve a similar problem are also very much welcome.

Thank you!

TABLE Feedback 
FROM "Daily Notes" 
WHERE contains(Feedback, [[Person A]])

I think this will achieve what you are trying to do.

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