I have code that fills in a blank row every X amount of records. What I want to do is have some code that will then plug into a cell in those empty rows some static text. Here is what I have for the adding of blank rows... code not all mine I nabbed it from the internet. What I need it to do is to fill in static text into the blank line it is creating. Then continue on padding and adding every 50 records. Thanks!
**********
Sub InsertRowEveryXrows()
Dim rw As Long
Dim lr As Long
Dim cnt As Long
lr = Range("A" & Rows.Count).End(xlUp).Row
rw = 2
cnt = 1
Do
If cnt = 50 Then
Rows(rw).Insert Shift:=xlDown
cnt = 1
Else
cnt = cnt + 1
End If
rw = rw + 1
Loop While rw <> lr
End Sub
*****************