Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AW1976NOVA
Post Patron
Post Patron

Power Query: How merge row results and separate by comma

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.

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @AW1976NOVA ,

 

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


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @AW1976NOVA ,

 

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


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Greg_Deckler
Super User
Super User

@AW1976NOVA You could use the "&" concatenation operator like this:

[Cylinders] & "," & [Turbo] & "," & [Boost] & "," & [Exhaust]


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.