View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] james.y.so@gmail.com is offline
external usenet poster
 
Posts: 6
Default Excel Convert Multiple Rows into Multiple Columns

Hi All,

I need some help with converting my excel data from multiple rows to
multiple columns. Say i have a long list of serial numbers in a single
column, like this:

10000
10001
10002
10003
10004
10005
10006
.....
19999

How can i convert it to columns of data, like this?

10000 10005 10010 .....
10001 10006 10011 ....
10002 10007 10012 ....
10003 10008 10013 ....
10004 10009 10014 ....

I need each column having a specific numbers of rows, say 40, before
the data continues to the next column.

Thanks in advance!