Hey everyone,
How are u? Could you please help me with the code below that searches in column A, a word that begins with bel. All working great, but if it isn't found then pop up a message for 1 second "Entry not found".
Thanks and appreciation.
How are u? Could you please help me with the code below that searches in column A, a word that begins with bel. All working great, but if it isn't found then pop up a message for 1 second "Entry not found".
Code:
Sub search_bel()
Dim Fnd As Range
Set Fnd = Range("A:A").Find("bel*", , xlValues, xlWhole, , , False, False)
If Not Fnd Is Nothing Then Cells(Fnd.Row, ActiveCell.Column).Activate
End Sub
Thanks and appreciation.
Last edited: