I am trying to copy a range of cells in a single column and transpose them above as a row. The problem I am having is to try to increase the Rows(45:45) where each row is being copied, otherwise all of the rows get overwritten. When I run the macro I get a syntax error on Destination:= Range line
Range("A53:A63").Copy
Range("A52").Select
Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False _
, Transpose:=True
Range("A53:A63").Select
Application.CutCopyMode = False
Selection.EntireRow.Delete
Rows("52:52").Cut
Rows("45:45").Select
Destination:=Range("A" & Rows.Count).End(xlDown).Offset(1, 0)
Selection.Insert