Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.