View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Erin Searfoss Erin Searfoss is offline
external usenet poster
 
Posts: 41
Default Inserting numerous blank lines between specific rows of data

This will work too. Select the cells in the first column of the range where
you want to insert the rows.

Sub EnterEightRows()
x = 0
For Each cell In Selection.Cells
x = x + 1
If (x + 7) Mod 38 = 0 Then cell.Resize(8, 1).EntireRow.Insert
Next cell
End Sub

"Deb" wrote:

To be exact, I want to be able to insert 8 blank rows after Row 30, Row 68,
Row 106, Row 144, Row 182, and Row 220. Is there a macro to set up for that?