Forum Discussion

PowerBtm's avatar
PowerBtm
New Member
5 years ago
Solved

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...
  • Anonymous's avatar
    Anonymous
    5 years ago

    You can use:

    = Table.FromRows(List.Zip(List.Split(TableName[ColumnName], 40)))

     

    --Nate