Forum Discussion
Anonymous
3 years agoNot applicable
Splitting multiple values in a row to columns
Hi Team, I have one scenario Which is having two columns Start and End. Start End A,B,C X,Y,Z and I need output like this. Start End A X B ...
wdx223_Daniel
3 years agoCommunity Champion
=#table({"Start","End"},List.TransformMany(Table.ToRows(Table),each List.Zip(List.Transform(_,each Text.Split(_,","))),(x,y)=>y))
Anonymous
3 years agoNot applicable