Craig
That would 25 cols and 300 rows for 7500 cells.
Sub ToOneColumn()
Dim cntI As Integer
Dim cntJ As Integer
Dim TotalRows As Integer
Dim TotalCols As Integer
With Range("A1:Y300")
TotalRows = .Rows.Count
TotalCols = .Columns.Count
End With
For cntJ = 2 To TotalCols
Cells(1, cntJ).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Cut
Cells((cntJ - 1) * TotalRows + 1, 1).Select
ActiveSheet.Paste
Next cntJ
Cells(1, 1).Select
End Sub
Gord Dibben MS Excel MVP
On Fri, 15 Aug 2008 06:14:01 -0700, Craig <(E-Mail Removed)>
wrote:
>Hi
>
>How can I take a large block of data (A1:Y300 which is 24 cols, 300 rows or
>7200 cells of data) and paste that data into another sheet but only into one
>column (so I get the 7200 data cells all in one column from say B1:B7200.
>
>thank you!!
>
>Craig
>
|