insert 3 blank rows after every 2 rows

M

Mike H

Hi,

Right click your sheet tab, view code and paste this in. Change the 9 to
the row wher you want insertion to start.

Sub InsertRows()
For i = 9 To 2 Step -2
Rows(i & ":" & i + 2).Insert Shift:=xlDown
Next
End Sub


Mike
 
Top