Excel 2016: VBA Code to check if a value exists in a Table Column

ajay_gajree

Well-known Member
Joined
Jul 16, 2011
Messages
518
Can anyone tell me or point me to a link that can tell me how to check if a value exists in a Table Column?

I know how vlookup, is similiar?

Code:
Application.VLookup(x, Worksheets("Module").ListObjects("tbl1").Range, 8, False)
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Code:
If Not IsError(Application.Match(x, Worksheets("Module").ListObjects("tbl1").ListColumns("ColumnHeadText").Range, 0)) Then
    Debug.Print "Value exists"
Else
    Debug.Print "Value does not exist"
End If

WBD
 
Upvote 0

Forum statistics

Threads
1,215,555
Messages
6,125,490
Members
449,234
Latest member
slzaleski

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