Private Sub CommandButton1_Click()
Dim i As Integer
i = 3
While Not IsEmpty(ActiveSheet.Cells(i, 1).Value)
  If ActiveSheet.Cells(i, 1).Value = TextBox1.Text Then
    ActiveSheet.Cells(i, 1).Select
  End If
  i = i + 1
  Wend
  TextBox1.Text = ""
  On Error Resume Next
  TextBox1.SetFouce  '一般用不着
End Sub