I am trying to write a macro to copy data from column C (to the last full row) and transpose paste that data into row 1 on sheet 2. I cannot get my code to work. I am getting a Run-time error 1004 for the Paste line of code.
Option Explicit
Sub ColumnRow()
Dim lRow As Long
lRow = Cells(Rows.Count, 1).End(xlUp).Row
Worksheets("Sheet1").Range("C1" & lRow).Copy
Worksheets("Sheet2").Range("A1").PasteSpecial Transpose:=True
End Sub