If this is your first visit, then welcome! Be sure to check out the FAQ by clicking the link above.Register here so that you can post in the forums or comment on the articles.
Register for a FREE account, and/ or Log in to avoid these ads!
I have a table with: 256 columns by 256 rows. I would like to heap all the columns ahead of every another to create one long-column of 65,536 rows. Any assistance?
A quick macro Code: For i = 2 To 256 Cells(1, i).Resize(256).Copy Cells((i - 1) * 256 + 1, 1) Next i
For i = 2 To 256 Cells(1, i).Resize(256).Copy Cells((i - 1) * 256 + 1, 1) Next i
Forum Rules
Bookmarks