Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello,
I have a table in specfic column (Site Code Merge Custom) contains the duplicated values, can someone advise how to create a new table that show like below? In column "Site Code Merge Custom" I only want the duplicated value show in one record, and the "Manufacturing Product Location Code" column value merge and use coma to separte out.
Thanks in advance.!
Solved! Go to Solution.
Hey @marry ,
You can combine the Row using Text.Combine function on Power Query.
First, you need to "group by whit sum" your table like the image bellow.
Then, that will generate an error
To fix the error, you need edit the M code like that:
Table.Group(#"Changed Type", {"Site Code"}, {{"Location Code.1", each Text.Combine([Location Code], ","), type nullable text}})
You will achieve your lines combine!
Regards,
Marcel Magalhães
Microsoft Power BI Official Partner
MCT | Certified PL-300 Power BI
Hey @marry ,
You can combine the Row using Text.Combine function on Power Query.
First, you need to "group by whit sum" your table like the image bellow.
Then, that will generate an error
To fix the error, you need edit the M code like that:
Table.Group(#"Changed Type", {"Site Code"}, {{"Location Code.1", each Text.Combine([Location Code], ","), type nullable text}})
You will achieve your lines combine!
Regards,
Marcel Magalhães
Microsoft Power BI Official Partner
MCT | Certified PL-300 Power BI
Hello @marcelsmaglhaes ,
Amazing!!!! Thank you so much!! It fully filfill my need. 🙂
Appreciated your help!
Best regards,
Mary Chen
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
109 | |
101 | |
39 | |
31 |