Bonsoir Alain,
Peut être avec cette petite macro :
VB:
Sub Copie()
Application.ScreenUpdating = False
DL = Cells(Cells.Rows.Count, "A").End(xlUp).Row
For L = 4 To DL Step 3
Cells(L + 1, "A") = Cells(L, "A")
Cells(L + 2, "A") = Cells(L, "A")
Next L
End Sub