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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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