Hello, thanks for taking the time to help me out....
Sub Xpose()
Worksheets("insertion_order").Select
' copy column E info into Row 6 starting at column C in worsheet "zone_chart"
Range("A12").Resize(, 10).Value = Application.Transpose(Range("C6:L6"))
End Sub
I would like to modify this code to transpose on to an other worksheet
i have about 65 columns need to to this to
column E needs to go to row 6 in work sheet "zone chart"
Column F needs to go to row 7 in work sheet "zone chart"
so forth and so on.....
Thanks
Thomas
Sub Xpose()
Worksheets("insertion_order").Select
' copy column E info into Row 6 starting at column C in worsheet "zone_chart"
Range("A12").Resize(, 10).Value = Application.Transpose(Range("C6:L6"))
End Sub
I would like to modify this code to transpose on to an other worksheet
i have about 65 columns need to to this to
column E needs to go to row 6 in work sheet "zone chart"
Column F needs to go to row 7 in work sheet "zone chart"
so forth and so on.....
Thanks
Thomas