Forum Discussion
PowerBtm
5 years agoNew Member
Help: How could I automatically split a row in two when it passes a certain length?
I need to find a way to transform a single long column of up to 110 rows into multiple columns of maximum 40 rows. A40 to A79 should get moved to B0 to B39, etc. Here's the kicker; I can't use V...
- Anonymous5 years ago
You can use:
= Table.FromRows(List.Zip(List.Split(TableName[ColumnName], 40)))
--Nate
Anonymous
5 years agoNot applicable
Hi PowerBtm ,
Automatically turning a specific row into a new column does not seem very good. The attachment is how I manually changed columns 4-7 into a new column, you can check it out.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.