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
sewi
Frequent Visitor

Transform Data from rows to columns

Hi, 

 

is it possible to transfrom some table from these structure:
ID          Attribute

4711      A

4711      B

4712      A

 

in the following result:
ID       Attribute
4711   A|B
4712   A

 

Thanks for youre help!

1 ACCEPTED SOLUTION
slorin
Super User
Super User

Hi @sewi 

Group by ID, choose Sum and replace List.Sum by Text.Combine(  , "|")

= Table.Group(Source, {"ID"}, {{"Attribute", each Text.Combine([Attribute], "|"), type text}})

 

 

Stéphane 

View solution in original post

2 REPLIES 2
SundarRaj
Super User
Super User

Hi @sewi , here's a quick solution to this transformation. Thanks

SundarRaj_0-1740021639750.png

 

Sundar Rajagopalan
slorin
Super User
Super User

Hi @sewi 

Group by ID, choose Sum and replace List.Sum by Text.Combine(  , "|")

= Table.Group(Source, {"ID"}, {{"Attribute", each Text.Combine([Attribute], "|"), type text}})

 

 

Stéphane 

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