Row to Matrix Conversion??? How To Turn 1 Row of Data into 16 columns of data:
I have a several set of data that are usually about 400 or 500 items long all in 1 row. I have been taking this data and separating it into columns by hand. Needless this to say this takes up a lot of time.
After searching online I originally though the TRANSPOSE function could be used, but I could not find a way to have it carry the data to a new line after transposing the first 16 characters.
I found a bit of VBA Code the other day that Takes one row of data and separates it into 3 columns of data. Unfortunately I need to separate my 1 row of data into 16 columns. How can I do this quickly?
Data example: Row of 35 items to table/Matrix. How would I Take a row of 35 items and separate it in to a table/Matrix that looks like this:
01 02 03 04 05 06
07 08 09 10 11 12
13 14 15 16 17 18
19 20 21 22 23 24
25 26 27 28 29 30
31 32 34 35
Source Data would look like this
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Bookmarks