how do i insert 3 blank rows after every 2 rows of data?
M Mike H Sep 25, 2008 #2 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
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