Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I am trying to transpose large groups of numbers from 1 sheet to another. I have data in sets of 78 rows. I want to get each 78 rows and put in columns in second sheet Can I get somehelp with my code? I get a application error 1004 error Sub transposedata() Dim source As Range Dim destination As Range For I = 1 To 130000 Step 78 source = Worksheets("data").Range(Cells(I, 6), Cells(I + 77, 6)) destination = Worksheets("Sheet1").Range(Cells(J, 2), Cells(J, 80)) Desination = source J = J + 1 Next I End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Transposing rows into columns | New Users to Excel | |||
Transposing *lots* of rows | Excel Discussion (Misc queries) | |||
Transposing a column to several rows | Excel Discussion (Misc queries) | |||
Transposing a column to several rows | Excel Worksheet Functions | |||
Transposing columns and rows | Excel Programming |