I can't seem to make to this work. I keep getting stuck on
Rows(rng 5).Select
What I am trying to do is copy the row of the active cell and inserting the copied cell in a row that is 5 rows below the active cell.
Sub CopyConcatenate()
Dim ws As Worksheet
Dim rng As Range
Set rng = ActiveCell.Rows
rng.Select
Selection.Copy
Rows(rng 5).Select
Selection.Insert Shift:=xlDown
End Sub