Excel Single column into rows, VBA script insight

Posted by Sanityvoid on Super User See other posts from Super User or by Sanityvoid
Published on 2012-06-04T19:58:46Z Indexed on 2012/06/04 22:43 UTC
Read the original article Hit count: 165

Filed under:
|
|

Okay, so much similiar to the below link but mine is a bit different. Paginate Rows into Columns in Excel

I have a lot of data in column A, I want to take every 14 to 15 rows and make them a new row with multiple columns. I'm trying to get it into a format where SQL can intake the data. I figured the best way was to get them into rows then make a CSV with the data.

So it would like like below: (wow, the format totally didn't stick when posting)

column A     column B     C     D     etc

1               1         2     3      x
2               16        17    a      b
3
x
y
z
15
16
17
a
b
c

I can clarify if needed, but I'm stumped on how to get the data out of the single column with so many rows in the column.

Thanks for the help!!!

© Super User or respective owner

Related posts about microsoft-excel

Related posts about macros