So this is the code i have so far. what i am trying to do is in Column E find the Word Florida. Every time it finds the word florida i want it to insert 6 rows and paste the values from Cells AP1:AP6 in the inserted rows after florida. I want it to do this until they find the last Florida in the sheet. Any help would be appreciated
Sub findinsertpaste()
'
' findinsertpaste Macro
'
'
Do while
Columns("E:E").Select
Selection.Find(What:="Florida", After:=ActiveCell, LookIn:=xlFormulas _
, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Selection.EntireRow.insert
Selection.EntireRow.insert
Selection.EntireRow.insert
Selection.EntireRow.insert
Selection.EntireRow.insert
Selection.EntireRow.insert
Application.CutCopyMode = False
Range("AP1:AP6").Copy
ActiveCell.PasteSpecial xlPasteValues
Until Range("E:E") = " "
End Sub
Bookmarks