View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Carlos[_2_] Carlos[_2_] is offline
external usenet poster
 
Posts: 9
Default Vlookup with tableLookup is external workbook

Hello, i try use in VBA the Worksheetfuncion Vlookup with table lookup
another workbook.

Sub test()
Dim Look As Range
Dim tLook As Range

Set Look = Cells(2, 2)

---------------Error in next line ("P" is a name range)-----------------
Set tLook = Workbooks("c:\temp\test.xls").Sheets("test").Range ("P")

ActiveCell = Application.WorksheetFunction.VLookup(Look, tLook, 10, 0)

End Sub

Any help is appreciate

Thanks