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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
yishenhui
Helper II
Helper II

how to merge by rows?

Hi,

 

I want to merge field value together with rows. like the reverse operation of "split column to rows". For example below, the table has two columns, one is group, the other is the one need to be merged. the expected result is like the other. (or the joined field can be separated if the first solution not possible).

 

Thanks.

image.pngimage.png

1 ACCEPTED SOLUTION
artemus
Microsoft Employee
Microsoft Employee

You will need to use a custom group aggregate:

Table.Group(previousStep, {"group"}, {{"joined", each Text.Combine([#"field 1"], " ")}})

View solution in original post

1 REPLY 1
artemus
Microsoft Employee
Microsoft Employee

You will need to use a custom group aggregate:

Table.Group(previousStep, {"group"}, {{"joined", each Text.Combine([#"field 1"], " ")}})

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors