Vlookup in VB not returning anything error

G

Grant

Hi, I am trying to get the following working:


If Application.WorksheetFunction.IsNA(Application. _
WorksheetFunction.VLookup(lookUpValue,
myRange, 1, False)) = False Then

I have tested it where it should not be able to find
anything from the vlookup and it causes an error of 1004
unable to get the vlookup property of the worksheet class.

How would I go about getting this to work?

Thanks,
Grant.
 
T

Tom Ogilvy

dim res as Variant
res = VLookup(lookUpValue,myRange, 1, False)
if not iserror(res) then

' don't use Worksheetfunction
 
G

Grant

Returns sub or function not defined error.

-----Original Message-----
dim res as Variant
res = VLookup(lookUpValue,myRange, 1, False)
if not iserror(res) then

' don't use Worksheetfunction

--
Regards,
Tom Ogilvy





.
 
N

Norman Jones

Hi Grant,

I think there was a typo and Tom intended:

res = Application.VLookup(lookUpValue,myRange, 1, False)
 
T

Tom Ogilvy

my typo - editing your code, I deleted application as well and forgot to
add it back.

res = Application.vlookup(lookUpValue, myRange, 1, False)
 
Top