Entra al Editor de macros (presionando juntas las teclas Alt y F11)
Inserta un módulo.
Copia y pega este código allí.
Sub DUPLICANDO()
'x Elsamatilde
'se establece el fin de rango
finx = ActiveSheet.Range("A" & Rows.Count).End(xlUp).Row
'se evita el parpadeo del proceso
Application.ScreenUpdating = False
'se recorre la col A desde fila 2 hasta el final
[A2].Select
While ActiveCell.Row <= finx
ActiveCell.EntireRow.Copy
ActiveCell.Offset(1, 0).Insert Shift:=xlDown
ActiveCell.Offset(2, 0).Select
'incremento en 1 el total de filas
finx = finx + 1
Wend
Application.CutCopyMode = False
MsgBox "Fin del proceso."
End Sub