Forum Discussion
Mitsugu
3 years agoRegular Visitor
Expand each table dynamically from list, using list sequence as equivalence for like columns
I'm looking for a command similar to the Table.ExpandTableColumn() with a change to the required column extraction for each table. = Table.ExpandTableColumn(Source, "ColumntoExpand",...
- 3 years ago
then transform the custom column firstly, then click to expand it.
NewStep=Table.CombineColumns(PreviousStepName,{"Custom","List"},each Table.Skip(Table.DemoteHeaders(Table.SelectColumns(_{0},_{1}))),"Custom")
wdx223_Daniel
3 years agoCommunity Champion
then transform the custom column firstly, then click to expand it.
NewStep=Table.CombineColumns(PreviousStepName,{"Custom","List"},each Table.Skip(Table.DemoteHeaders(Table.SelectColumns(_{0},_{1}))),"Custom")
Mitsugu
3 years agoRegular Visitor
Thanks Daniel!
Took me a while to get but I got your formula working now~
= Table.CombineColumns(SourcetoExpand2,{"Custom", "List"},each Table.Skip(Table.DemoteHeaders(Table.SelectColumns(_{0},_{1})), 1),"Custom")