Dim Tbl As ListObject
Dim Search As Date
Dim Rng As Range
Search = Format(TextBox1.Value, "DD/MM/YYYY")
Set Tbl = ActiveSheet.ListObjects(1)
On Error Resume Next
Set Rng = Tbl.DataBodyRange.Columns(1).Find(Search, LookAt:=xlWhole)
On Error GoTo 0
If Not Rng Is Nothing Then
MsgBox "Date found successfully", vbQuestion, "successfully"
Unload Me
Rng.Select
Else
MsgBox "The date cannot be found. try another?", vbInformation, "Not found"
TextBox1.SetFocus
End If