I have tried the suggestions in quite a few different threads to solve the problem that I am encountering. I am trying to copy a Range of cells in a column on one sheet and transpose paste them on another sheet.
Code:
Sub MoveWell(TCDesc, OnStream, WellCnt)
Sheets(TCDesc).Select
Range("B71:B799").Copy
Sheets("Gas_Prod").Select
Range("A18").Offset(WellCnt + 2, OnStream + 1).Select
Selection.PasteSpecial Paste:=x1Values, Operation:=xlNone, SkipBlanks:=False, Transpose:=True
End Sub