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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.