This little routine will add the rows on the activesheet. Add it to your existing macro or call it separately:
Option Explicit
Sub AddEmptyRowsInData()
Dim Rws As Long, FR As Long, LR As Long, Rw As Long
Rws = Application.InputBox("Insert how many rows between each row of data?", "How many empty rows?", 10, Type:=1)
If Rws = 0 Then Exit Sub
FR = Application.InputBox("The first row of data is row:", "First row?", 2, Type:=1) + 1
LR = Range("A" & Rows.Count).End(xlUp).Row
For Rw = LR To FR Step -1
Rows(Rw).Resize(Rws).Insert xlShiftDown
Next Rw
End Sub
Bookmarks