Public Sub FindData()
Dim lLastRow As Long
With Sheets(1)
lLastRow = .Range("A" & Rows.Count).End(xlUp).Row
For i = 2 To lLastRow
If InStr(1, .Range("A" & i).Value, "10-") > 0 Then
.Rows(i).Copy Destination:=Sheets(2).Range("A" & Rows.Count).End(xlUp)(2)
End If
Next i
Application.CutCopyMode = False
End With
End Sub