Hi Ryan, hopefully this code will work for you. Change your search range as needed, and if you don't want to hardcode the search term ("gg") you could always set it to look at a variable or even cell value.
Sub Ryan()
Dim rng As Range
Set rng = Range("A1:A20").Find("gg", [A1], xlValues, xlWhole, xlByColumns, xlNext, False)
rng.EntireRow.Insert Shift:=xlDown
End Sub
Although I suppose it could be done on one line without the rng variable..
Range("A1:A20").Find("gg", [A1], xlValues, xlWhole, xlByColumns, xlNext, False).EntireRow.Insert Shift:=xlDown
Bookmarks