Transpose column of data and add column between data

Klturi421

Board Regular
Joined
Aug 31, 2014
Messages
52
In column A I have data that I would like to have transposed to individual columns. Each column should have a predetermined number of columns between each data set. If I would like ot change it from 1 column to 5 columns (or some other number) I would like to be able to do so. Is it achievable through either a VBA script or a formula?

Example:
ABCDEFGHIJ
Data1Data1Data2Data3Data4Data5
Data2
Data3
Data4
Data5
Data6
Data7
Data8

I found a formula that works well in Google Sheets however it doesn't work very well if I try to convert it to Excel.
Excel Formula:
=ArrayFormula(IFERROR(VLOOKUP(SEQUENCE(1,COUNTA(MYDATA)*8,8,1)/8,{SEQUENCE(COUNTA(MYDATA),1,1,1),FILTER(MYDATA,LEN(MYDATA))},2,0),))

MYDATA = named range
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.

Forum statistics

Threads
1,215,453
Messages
6,124,930
Members
449,195
Latest member
Stevenciu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top