Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
To solve the task, I used "group by" and most of my columns disappeared in the new table. And when I try to merge the tables, I get strange results with many rows being repeated million times. How can I do it properly in Power Query? The data is in the comment under the post.
Solved! Go to Solution.
For your question, here is the method I provided:
You need an Original table and add a Copy table.
“Original table”
“Copy table”
First, the Copy table is group by.
The original and copy tables are then merged. You can choose to merge a new table.
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
For your question, here is the method I provided:
You need an Original table and add a Copy table.
“Original table”
“Copy table”
First, the Copy table is group by.
The original and copy tables are then merged. You can choose to merge a new table.
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Data:
Owner | Name | Share | Index | What I need -> | Owner | Name | Share | Index | Average share |
Bob | Car 1 | 0,45 | 1 | Bob | Car 1 | 0,45 | 1 | (0,45+0,4)/2 | |
Bob | Car 1 | 0,55 | 2 | Bob | Car 1 | 0,55 | 2 | (0,55+0,6)/2 | |
Bob | Car 2 | 0,4 | 1 | Bob | Car 2 | 0,4 | 1 | (0,45+0,4)/2 | |
Bob | Car 2 | 0,6 | 2 | Bob | Car 2 | 0,6 | 2 | (0,55+0,6)/2 | |
Alex | Bike 1 | 0,3 | 1 | Alex | Bike 1 | 0,3 | 1 | (0,3+0,2)/2 | |
Alex | Bike 1 | 0,7 | 2 | Alex | Bike 1 | 0,7 | 2 | (0,7+0,8)/2 | |
Alex | Bike 2 | 0,2 | 1 | Alex | Bike 2 | 0,2 | 1 | (0,3+0,2)/2 | |
Alex | Bike 2 | 0,8 | 2 | Alex | Bike 2 | 0,8 | 2 | (0,7+0,8)/2 |