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.
Hello,
I have the following situation in Power Query.
A fact table that has foreign keys to multiple dimensions.
eg.
ID_Fact ID_FK1 ID_FK2 value
1 | 2 | 3 | 4 |
1 | FK1_1 | FK2_1 | 100 |
2 | FK1_1 | FK2_1 | 50 |
3 | FK1_2 | FK2_1 | 70 |
I want to merge the fact table with the dimension tables based on the ID's.
The caveat however is I want to do this dynamically.
So if in the fact table a new foreign key is added, it should join that new table as well, without having to change the query.
How do I know which column is a foreign key? Because this is data entered in a different table:
FK Columns
FK1_ID |
FK2_ID |
So what I want to do, is to join the fact table with every table present in the foreign key list-table.
For simplicity, you can assume that all tables and columns have the same naming convention and that all columns required are present.
So if in the above table the value 'FK3_ID' is added, it should join the fact with the new table 'FK3' on the 'FK3_ID' column.
I'm confident the key lies in using a recursive query, but I'm unsuccessful.
Thank you.
Solved! Go to Solution.
Thanks for the reply, I'm happy to say I managed to obtain the result I needed, using Evaluate.Expression to retrieve the tables from the text names of the tables linked...
No, it's not possible to dynamically nested join tables. Even we can substring the values from FK columns, it's still not supported to get a table or list with its name in Power Query. So for your requirement, it can't be achieved with recursive function.
Regards,
Thanks for the reply, I'm happy to say I managed to obtain the result I needed, using Evaluate.Expression to retrieve the tables from the text names of the tables linked...
See code above. Basically I'm using a classic recursive function looping until a condition (in this case for this table no columns are listed as being a foreign key) is met.
For the basetable I get the list of foreign keys from a external table. For every foreign key I join with the table that has the name associated with that foreign key (hence the Expression.Evaluate).
It probably can go faster / cleaner using List.Generate but will try that one later.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
75 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |