Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
I'm trying to work out the best way to model our data in Power BI. I've read a lot around star/snowflake/galaxy schemas, and they look like great ways to model data however I'm struggling to fit the principals to the data I have. The structure is that there are investors who invest in fund-of-funds, these then invest in venture funds who in tern invest in companies (I haven’t even started looking at adding in the company data to the model!). The tricky part is that one investor can invest in many fund of funds, one fund of fund can invest in many venture funds who in tern invest in many companies, same goes when you go back up that structure. When selecting say a venture fund, the user would expect to see the fund of funds that invest in it and the investors that invest in those fund of funds, same goes for selecting anything else, they want to see the related entities and realted records recorded in fact tables.
I’ve created two bridging tables, investor_investment and commitments so there are one to many relationships between the tables. I’m then thinking I’ll need to set it up to filter working both ways between these tables the bridging tables and dimentions. Fact tables are then linked to the bridging tables and in some cases the fund of funds or companies.
Is this a good way of setting this up or am I missing something? I’ve read that filtering tables in both directions should be avoided if possible but I can’t see a way round it. This structure doesn’t look like any I’ve seen recommended which is why I'm questioning if I've missed something. I've added in a diagram below to help. Any help would be appreciated thanks!
Solved! Go to Solution.
You can filter other dimension tables to show only the subset of a selection using a simple measure as a filter for each slicer in the filter pane:
Filter Slicers = COUNTROWS (RELATEDTABLE(Fact table))
add the measure to each slicer and set the value to greater or equal to 1
Proud to be a Super User!
Paul on Linkedin.
You can filter other dimension tables to show only the subset of a selection using a simple measure as a filter for each slicer in the filter pane:
Filter Slicers = COUNTROWS (RELATEDTABLE(Fact table))
add the measure to each slicer and set the value to greater or equal to 1
Proud to be a Super User!
Paul on Linkedin.
Thank you ever so much!! I can really clean up my model doing that, hadn't thought of using a measure to filter
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.