I need to insert 3 rows between each existing row. I have this code for inserting one row, how can this be changed so that I am inserting 3 rows. Or if you have another way to do this, or some other macro, anything to help!
Sub Insert_Blank_Rows()
'Select last row in worksheet.
Selection.End(xlDown).Select
Do Until ActiveCell.Row = 1
'Insert blank row.
ActiveCell.EntireRow.Insert shift:=xlDown
'Move up one row.
ActiveCell.Offset(-1, 0).Select
Loop
End Sub
2007-09-27
05:03:59
·
1 answers
·
asked by
suebee
1
in
Computers & Internet
➔ Programming & Design