Sub Move()
Sheets("QuoteLog").Select
Application.ScreenUpdating = False
Application.EnableEvents = False
On Error GoTo ErrorTrap
Searcher: Columns("A:A").Select
Selection.Find(What:="x", After:=ActiveCell, LookIn:=xlValues, LookAt:= _
xlWhole, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Activate
ActiveCell.EntireRow.Select
Selection.Copy
Sheets("Archive").Select
Rows(3).Select
Selection.Insert Shift:=xlDown
Range("A3").Value = ""
Sheets("QuoteLog").Select
Selection.Delete Shift:=xlUp
GoTo Searcher
ErrorTrap: On Error GoTo 0
Range("A" & ActiveCell.Row).Select
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub
Bookmarks