- Hi,
-
- I have three data tables I'm trying to combine into dynamic reports. They are contain unique ID keys so the relationships are in place, but I'm having trouble dispaying them in a way that is flexible enough and not incredibly complex to set up.
-
- Table 1 contains projects with various fields
- Table 2 contains the leads for the projects, with various fields including the project ID corresponding to table 1. Each project will have exactly 1 lead and each lead will only have 1 project.
- Table 3 contains other team members with various fields. There will be at least one in addition to the lead for every project, but often there will be more than one, up to around twenty. This table contains the ID for the project and lead each team member works with, and no team member will ever have more than one project/lead.
I'd like to combine these into a report in a format like:
- Header with all project fields
- Project 1
- Header with all lead fields
- Lead for project 1
- Header with all team member fields
- Team member 1 of XX for project 1
- Team member 2 of XX for project 1
- ....
Then the same for project 2 and so on.
I can see how I would do this with code, or with a really complicated spreadsheet with lots of counts, lookups and helper collumns, but I'm hoping Power BI can help me find a simple-ish solution.
Thanks for any advice!