Sub My_Find()
'Modified 8/10/2018 5:01:51 PM EDT
Dim SearchString As String
Dim SearchRange As Range
Dim Lastrow As Long
Dim r As Long
Lastrow = Cells(Rows.Count, "B").End(xlUp).Row
SearchString = "Final"
Set SearchRange = Range("B1:B" & Lastrow).Find(SearchString, LookIn:=xlValues, lookat:=xlWhole)
If SearchRange Is Nothing Then MsgBox SearchString & " Not foud": Exit Sub
r = SearchRange.Row
Rows(r).Resize(5).Insert shift:=xlUp
End Sub
Hi
Thanks for supplying the code
works great