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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I have a table I'm bringing in to Power BI. I would like to merge several rows together and have the results separated by a comma. The issue is, sometimes there are blanks for some of the fields and I do not want commas included if there are blanks in these fields.
Here is an example of my data/table in Power BI:
Name Engine Cylinders Turbo Boost Exhaust
Andy 400 8 Turbo 5psi Duel
Bob 427 10psi Duel
Dan 255 6 Single
I would like to merge the results together in fields Cylinder, Turbo, Boost and Exhaust so the newly created column would have the following results (highlighted in Red):
Name Engine Cylinders Turbo Boost Exhaust New Column
Andy 400 8 Turbo 5psi Duel 8, Turbo, 5psi, Duel
Bob 427 10psi Duel 10psi, Duel
Dan 255 6 Single 6, Single
I know Power Query has the 'Group By' trandformation but I don't believe that is what I need in this situation. I'm not sure what the custom column would need to be in order to accomplish this merge tat I'm trying to do.
Solved! Go to Solution.
Hi @Anonymous ,
Add a new column with the following code:
[Cylinders] & (if [Cylinders] = "" then "" else "," )
& [Turbo]
&
(if [Turbo] = "" then "" else "," ) & [Boost]
&
(if [Boost] = "" then "" else "," ) & [Exhaust]
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous ,
Add a new column with the following code:
[Cylinders] & (if [Cylinders] = "" then "" else "," )
& [Turbo]
&
(if [Turbo] = "" then "" else "," ) & [Boost]
&
(if [Boost] = "" then "" else "," ) & [Exhaust]
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português@Anonymous You could use the "&" concatenation operator like this:
[Cylinders] & "," & [Turbo] & "," & [Boost] & "," & [Exhaust]
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.