Userform display a message when vlookup does not find data in textbox or does not return a match

Lokoloko

New Member
Joined
Oct 23, 2022
Messages
11
Office Version
  1. 2016
  2. 2013
Platform
  1. Windows
Private sub textbox1_AfterUpdate()

If textbox1.value = Worksheetfunction.Vlookup(textbox1,Sheet1.Range("A:A") , 1, False) then
Msgbox "Data Found"
Else
Msgbox "No Data Found"
End if

End sub
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi,
try

VBA Code:
Private Sub textbox1_AfterUpdate()
    Dim LookedUp    As Variant
    
    LookedUp = Application.VLookup(TextBox1.Value, Sheet1.Range("A:A"), 1, False)
    
    If Not IsError(LookedUp) Then
        MsgBox "Data Found"
    Else
        MsgBox "No Data Found"
    End If
    
End Sub

Dave
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top