View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Vlookup in VB not returning anything error

That is correct. Thanks for the correction.

--
Regards,
Tom Ogilvy

"Norman Jones" wrote in message
...
Hi Grant,

I think there was a typo and Tom intended:

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


---
Regards,
Norman



"Grant" wrote in message
...
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


"Grant" wrote in

message
...
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.


.