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
mikeborg82
Advocate II
Advocate II

Table transformation (pivot unpivot????)

Table transformation...  the top three rows are how the data appears, I want the data to look like it does below in one row... i assume this is possible, any ideas and help?  Thank you so much.

RankNameRatingNumber of ratings  
1Kentucky Brunch Brand Stout4.84615  
1Toppling Goliath Brewing Company4.84615  
1American Double / Imperial Stout / 12.00% ABV4.84615  
      
      
RankNameName 2Name 3RatingNumber of ratings
1Kentucky Brunch Brand StoutToppling Goliath Brewing CompanyAmerican Double / Imperial Stout / 12.00% ABV4.84615
1 ACCEPTED SOLUTION

Indeed, a little bit from both because this includes some logic I recntly learned from @ImkeF

 

let
    Source = Table1,
    Grouped = Table.Group(Source, {"Rank", "Rating", "Number of ratings"}, {{"Names", each Table.FromRows({[Name]}), type table}}),
    Reordered = Table.ReorderColumns(Grouped,{"Rank", "Names", "Rating", "Number of ratings"}),
    ExpandedNames = Table.ExpandTableColumn(Reordered, "Names", Table.ColumnNames(Table.Combine(Reordered[Names]))),
    RenamedColumns = Table.TransformColumnNames(ExpandedNames, each Replacer.ReplaceText(_, "Column", "Name "))
in
    RenamedColumns
Specializing in Power Query Formula Language (M)

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

That's a question for @MarcelBeug or @ImkeF.



Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Indeed, a little bit from both because this includes some logic I recntly learned from @ImkeF

 

let
    Source = Table1,
    Grouped = Table.Group(Source, {"Rank", "Rating", "Number of ratings"}, {{"Names", each Table.FromRows({[Name]}), type table}}),
    Reordered = Table.ReorderColumns(Grouped,{"Rank", "Names", "Rating", "Number of ratings"}),
    ExpandedNames = Table.ExpandTableColumn(Reordered, "Names", Table.ColumnNames(Table.Combine(Reordered[Names]))),
    RenamedColumns = Table.TransformColumnNames(ExpandedNames, each Replacer.ReplaceText(_, "Column", "Name "))
in
    RenamedColumns
Specializing in Power Query Formula Language (M)

wow, that is awesome!!  It worked brilliantly.

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.