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

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).

Forum statistics

Threads
1,214,952
Messages
6,122,457
Members
449,083
Latest member
Ava19

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