Forum Discussion
Dbar84
2 years agoFrequent Visitor
Help: Reordering the Values of each Row in Numerical Order
I have a company hierarchy levels that are in one column but they are not in numerical orders(image 1). My end goal is to have the levels in numerical order in one column(image 2). ...
- 2 years ago
Right click on the column --> Transform --> click on anything like lower case then edit the formula
= Table.TransformColumns(#"Changed Type",{{"Column1", each Text.Combine(List.Sort(Text.Split(_, ", ")), ", "), type text}})
spinfuzer
Solution Sage
2 years agoRight click on the column --> Transform --> click on anything like lower case then edit the formula
= Table.TransformColumns(#"Changed Type",{{"Column1", each Text.Combine(List.Sort(Text.Split(_, ", ")), ", "), type text}})
- Dbar842 years agoFrequent Visitor
A big THANK YOU! This did the trick.