View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
JulieA[_2_] JulieA[_2_] is offline
external usenet poster
 
Posts: 1
Default Inserting blank rows in Excell

Where would I insert this macro?

"Sheeloo" wrote:

Use a macro like the one below
Sub InsertRows()
Dim i As Long, nRows As Integer, nEvery As Integer
Application.ScreenUpdating = False
With ActiveSheet
lastrow = .Cells(.Rows.Count, "A").End(xlUp).Row
End With
nRows = 2 'number of rows to insert
For i = lastrow To 1 Step -1
If Not IsEmpty(Cells(i, 1)) Then
Rows(i + 1 & ":" & i + nRows).Insert
End If
Next
End Sub

"JulieA" wrote:

How do i insert two blank rows after every existing data row in excell
without doing it manually?