Sub Insert2Rows()
Dim LastRow As Long
LastRow = Cells(Rows.Count, "B").End(xlUp).Row
For I = LastRow To 3 Step -1
If Cells(I, "A") <> "" Then
Range(Cells(I, 1), Cells(I + 1, 1)).EntireRow.Insert
Range("B1:E2").Copy Cells(I, "B")
End If
Next I
End Sub
Sub Insert2Rows()
Dim LastRow As Long, I as Long
Application.ScreenUpdating = False
LastRow = Cells(Rows.Count, "B").End(xlUp).Row
LastRow = Cells(LastRow, "A").End(xlUp).Row
For I = LastRow To 3 Step -1
If Cells(I, "A") <> "" Then
Range(Cells(I, 1), Cells(I + 1, 1)).EntireRow.Insert
Range("B1:E2").Copy Cells(I, "B")
I = Cells(I, "A").End(xlUp).Row + 1
If I < 3 Then Exit For
End If
Next I
Application.ScreenUpdating = True
End Sub