Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
226 views
in Technique[技术] by (71.8m points)

excel - Transform headers to cells and join

Current data:

Current data

Desired outcome:

desired outcome

I considering writing a basic VBA script, to loop through and concatenate. However since this will be running through 44 columns 25k-130k rows. I would prefer a more efficient solution.

I believe this could perhaps be accomplished fairly efficiently with power query. Any assistance would be greatly appreciated.

question from:https://stackoverflow.com/questions/66057628/transform-headers-to-cells-and-join

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Power Query is good here. Unpivot the non-Item columns and then aggregate with Text.Combine.

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    UnpivotColumns = Table.UnpivotOtherColumns(Source, {"Item"}, "Qualities", "Value"),
    GroupRows = Table.Group(UnpivotColumns, {"Item"}, {{"Qualities", each Text.Combine([Qualities], ","), type text}})
in
    GroupRows

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...