Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Target.Offset(0, 1).Value = WorksheetFunction.VLookup(target_string,
D_PELATES, 2, 0) produces the above error. Any ideas? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
That would be indicative of
A: bad arguments B: the value was not found. Try this Target.Offset(0, 1).Value = Application.VLookup(target_string, D_PELATES, 2, 0) If that doesn't solve it then another guess on the problem is then D_Pelates is actually a named range. Then it would be: Target.Offset(0, 1).Value = Application.VLookup(target_string, Range("D_PELATES"), 2, 0) -- Regards, Tom Ogilvy "DoctorG" wrote: Target.Offset(0, 1).Value = WorksheetFunction.VLookup(target_string, D_PELATES, 2, 0) produces the above error. Any ideas? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
"Unable to get the VLookup property of the WorksheetFunction class | Excel Discussion (Misc queries) | |||
Unable to get Match property of worksheetfunction | Excel Programming | |||
"Unable to get the NormSInv property of the WorksheetFunction clas | Excel Worksheet Functions | |||
Unable to get the Text property of the WorksheetFunction class | Excel Programming | |||
Unable to get the Vlookup Property of the WorkSheetFunction Class | Excel Programming |