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.
How to merge the data from
Product | Machine |
A | 1 |
A | 2 |
A | 3 |
to become
Product | Machine |
A | 1,2,3 |
Insert this step
= Table.Group(Source, {"Product"}, {{"Machine", each Text.Combine([Machine],","), type text}})
The instruction on the following page will give you the desired outcome:
https://gorilla.bi/power-query/group-by-to-concatenate-text/
It uses a group by function in combination with the Text.Combine function. It will give you the result your looking for and you can just follow the steps and explanation.