Hi I am using XL 2003 and wish to copy and transpose 10 rows of data from a list on sheet 1 to the next empty row on sheet 2.
Here is my code that dosnt work.
Sub
Sheets("TextData1").Range("A1:A10").Select
Selection.Copy
Sheets("TextData2").Select
Selection.End(xlDown).Offset(1, 0).Select
selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=
False, Transpose:=True
Sheets("TextData1").Select
Application.CutCopyMode = False
Selection.Delete Shift:=xlUp
Range("A1").Select
End Sub
Thank you for your assistance.
Here is my code that dosnt work.
Sub
Sheets("TextData1").Range("A1:A10").Select
Selection.Copy
Sheets("TextData2").Select
Selection.End(xlDown).Offset(1, 0).Select
selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=
False, Transpose:=True
Sheets("TextData1").Select
Application.CutCopyMode = False
Selection.Delete Shift:=xlUp
Range("A1").Select
End Sub
Thank you for your assistance.