Home > OS >  Split fixed number of rows to columns in excel
Split fixed number of rows to columns in excel

Time:09-30

I have a column in excel which has 750 rows. I want to split it into multiple columns with 15 rows each. For example.. row1 to row15 in column B, row16 to row30 in column C, row31 to row45 in column D...and so on.

Is there any easy/automated way available in excel to do that? Any help will be very much appreciated. Thanks.

CodePudding user response:

If you are on Microsoft-365 then can use enter image description here

CodePudding user response:

If WRAPCOLS doesn't work for you, then you can get the same output using simple index formula too; Paste this formula in B1 cell & drag down & right accordingly as required...

=INDEX($A:$A,COLUMN(A1)*15-15 ROW(A1))

Hope this Helps...

enter image description here

  • Related