View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
dd dd is offline
external usenet poster
 
Posts: 12
Default Inserting 3 new rows after the word total

Hi,
I test this today and it did not work on my data. Probably because I
used the Data-Subtotal function in Excel to get the total. This macro
did not insert any rows. But when I opened a new worksheet and manually
typed in a few rows of data in Col A with the word total, it did insert
3 new rows after total. How would I insert 3 new rows after using the
Subtotal function? Thanks



On Dec 15, 5:03 pm, Martin Fishlock
wrote:
dd, I think this will do your job, assuming the items are in column A.

Sub insert3rows()

Dim i As Integer
Dim rCell As Range
Dim lFirstRow As Long
With ActiveSheet.Range("A:A")
Set rCell = .Find("total", _
LookIn:=xlValues, LookAt:=xlWhole)
If Not rCell Is Nothing Then
lFirstRow = rCell.Row
Do
With rCell.Offset(1, 0)
For i = 1 To 3
.Insert xlShiftDown
Next i
End With
Set rCell = .FindNext(rCell)
Loop While Not rCell Is Nothing And rCell.Row < lFirstRow
End If
End With

End Sub

--
Hope this helps
Martin Fishlock
Please do not forget to rate this reply.



"dd" wrote:
Hi, I'm working with multiple rows of data, probably around 3000 rows
and I have the word "total" in between the data in Column A in Excel. I


want to add three blank rows after the word Total. The word Total is
also in bold font. Can someone please help with a macro? Thanks.- Hide quoted text -- Show quoted text -