Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Solved! Go to Solution.
According to Chris Webb's blog post, Table.AddKey() seems to help only on the "lookup side" of a join.
If you use Table.Distinct() on a single column of a table, then it will automatically add a key to that column.
It appears that the performance benefit only occurs when using Aggregation, not Expanding.
This appears to be because Power Query defaults to a full cartesian cross when joining 2 tables. When you aggregate, you'll see a great performance improvement.
Also, if you're joining with the intention of expanding a column...and you're expecting a single value on the join, consider using aggregation. You could use Min or First to grab that single value, and you should atill get the speed improvement.
Let us know what your results are!
According to Chris Webb's blog post, Table.AddKey() seems to help only on the "lookup side" of a join.
If you use Table.Distinct() on a single column of a table, then it will automatically add a key to that column.
It appears that the performance benefit only occurs when using Aggregation, not Expanding.
This appears to be because Power Query defaults to a full cartesian cross when joining 2 tables. When you aggregate, you'll see a great performance improvement.
Also, if you're joining with the intention of expanding a column...and you're expecting a single value on the join, consider using aggregation. You could use Min or First to grab that single value, and you should atill get the speed improvement.
Let us know what your results are!
Kudos to @Anonymous explanation.
If you want to aggregate the joined table, then there are some performance aspects to consider: https://www.thebiccountant.com/2019/10/28/performance-tip-for-aggregations-after-joins-in-power-quer...
But if you're joining distinct rows, then using the Key on the table is the only trick that I'm aware of.
In addition to that, make sure to check other factors that impact performance (especially the disabling of background refresh): https://www.thebiccountant.com/2019/10/28/performance-tip-for-aggregations-after-joins-in-power-quer...
Imke Feldmann (The BIccountant)
If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!
How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries
@ImkeF might have some thoughts.
You could experiment. The Tools tab of the Query Editor ribbon has diagnostics now.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.