Hello, this is my first post here, so I apologize in advance if I have chosen the wrong location or have too lame question.
I am designing a database to track people's time on projects. I have three tables: People, Time, and Projects (which is synced from another base). In the Time table, there is a list of time entries. Alongside other fields, each entry is linked to one People record and one Projects record.
What I would like to achieve is a List view of the Projects with the following structure:
- Project (sum of all time - this I can accomplish with Rollup)
--- People (with the sum of time spent on the particular project)
------ Time entries
However, it's not working because there is no direct linked connection between People and Projects. I can create a Lookup field to show me this data, but that doesn't work in a hierarchical structure.
Only solution I have so far is to manually add each person to specific project, but I don't like that workflow 🙂 I would like to know how many hours a particular person has spent on a specific project.
Thank you,
Peter