Hi NPen,
Assuming Your Serial Number in Col A
Try Below Code and also Find attached file
Option Explicit
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
Dim s As String
Dim MyRange As Range, r As Range
Set MyRange = Sheet1.Range("A2:A100000")
If KeyCode = 13 Then
s = frm77.TextBox1.Value
Set r = MyRange.Find(s)
If Not r Is Nothing Then
r.Select
Set r = Nothing
frm77.TextBox1.Value = ""
Else
MsgBox "Not Found"
Set r = Nothing
frm77.TextBox1.Value = ""
End If
End If
End Sub
Bookmarks