Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a file that is around 5.5mb. The main table in it is 285k rows, containing products by location and date. There is a second table of around 18K rows containing customer data per product.
Product codes are not unique in either table, so I joined them in M to avoid issues with many to many relationships
When I combine the two together in powerquery the table increases to 1.4 million rows and the file size increases to 45mb.
I am concerned about refresh times and the overall size of the file. The dashboard itself is still quite responsive. It's more the refresh I'm trying to speed up. What can I do to reduce the file size and keep it quick?
Or is there a better way to combine the tables that gets around the many to many relationship issue?
Solved! Go to Solution.
Hi @dapperscavenger ,
By the sounds of it, you don't need to join these tables at all, you need a dimension table.
In Power Query, create a products dimension as follows:
1) New Source > Blank Query
2) In the formula bar, enter:
= Table.Distinct(Table.SelectColumns(yourTableWithAllProductsIn, {"ProductCode", "ProductName"}))
Where "yourTableWithAllProducts" is the name of one of your queries that contains all products, and "ProductCode" and "ProductName" are the names of the columns from this query that you want to retain in your dimension table.
Then Apply this to the data model.
Once your two original (unjoined/unmerged) tables are in the model with your new products dimension table, make relationships between the dimension table and each fact table as follows:
dimension[ProductCode] to fact[ProductCode] - One to many respectively.
You can now use the ProductName field from your dimension table in any visuals and this will correctly filter the fact values in your two fact tables.
Pete
Proud to be a Datanaut!
Hi @dapperscavenger ,
By the sounds of it, you don't need to join these tables at all, you need a dimension table.
In Power Query, create a products dimension as follows:
1) New Source > Blank Query
2) In the formula bar, enter:
= Table.Distinct(Table.SelectColumns(yourTableWithAllProductsIn, {"ProductCode", "ProductName"}))
Where "yourTableWithAllProducts" is the name of one of your queries that contains all products, and "ProductCode" and "ProductName" are the names of the columns from this query that you want to retain in your dimension table.
Then Apply this to the data model.
Once your two original (unjoined/unmerged) tables are in the model with your new products dimension table, make relationships between the dimension table and each fact table as follows:
dimension[ProductCode] to fact[ProductCode] - One to many respectively.
You can now use the ProductName field from your dimension table in any visuals and this will correctly filter the fact values in your two fact tables.
Pete
Proud to be a Datanaut!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
101 | |
72 | |
47 | |
39 | |
33 |
User | Count |
---|---|
157 | |
101 | |
60 | |
43 | |
40 |