Hello Obsidian community,
I’ve been using Obsidian for several years now, both for personal and professional purposes. As a team lead, I also use it to keep notes about my colleagues, which helps me with things like yearly reviews and overall team management.
I’m an avid user of Daily Notes, and often make quick notes about team members by tagging them with [[Name]]
. However, I’ve found it quite cumbersome to manually collect and consolidate all the information into something useful.
What I’m trying to do
My idea is to optimize this process so I can have something like an employee file, where all notes related to a specific colleague are displayed using DataView. I want to be able to add a short note for each employee, allowing me to see a key fact without having to open their file. If I need more information, I would like to simply click a link to jump to the respective note for deeper insights. My current solution is a bit clunky and feels inefficient, plus it struggles with multiple mentions of a colleague in the same note.
Things I have tried
Here’s an example that works:
# 1 Notes
- (Teammember::[[Peter1]]) (TeammemberNote::created something great. 👍)
And here’s an example that doesn’t work (in the reading view of Obsidian, only the first list entry is shown twice, which makes me suspect this approach isn’t correct):
# 1 Notes
- (Teammember::[[Peter1]]) (TeammemberNote::did something bad. 👎)
- (Teammember::[[Peter1]]) (TeammemberNote::did another bad thing. 👎)
My current DataView attempt looks like this:
TABLE Teammember, TeammemberNote FROM "" WHERE Teammember = [[Peter1]]
It doesn’t properly handle multiple mentions in the same note, and I’m hoping for a more efficient solution.
Has anyone here tackled a similar problem or have any suggestions for improving this setup?
Thanks in advance for your help!