Application.WorksheetFunction.VLookup Full Path Not Working (From Another Workbook)

ziv26

New Member
Joined
Apr 25, 2018
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi,

I am new to VBA and would like to use a full path for the Application.WorksheetFunction.VLookup method but cannot make it to work. I really googled for answers but cannot find a perfect example so I really need some help. So in summary I just need help with the arg2 part since I was able to make it work with the commented out code Worksheets("Sheet2").Range("A:B").

Here's my code:
Code:
    For Each cell In namedRangeCompanySize
        On Error Resume Next
'        lookUpResult = Application.WorksheetFunction.VLookup(cell, _
'              Worksheets("Sheet2").Range("A:B"), 2, 0)

        lookUpResult = Application.WorksheetFunction.VLookup(cell, Workbooks.Open("C:\Users\sngutierrez\Desktop\MAINICHI FILES\01-ALL-IN-ONE-2018IM.xlsm").Sheets("CO_SI").Range("A:B"), 2, 0)

        On Error GoTo 0
        
        If lookUpResult = "" Then
            cell.Interior.Color = 65535
        Else
            cell.Value = lookUpResult
            lookUpResult = ""
        End If

    Next
Thanks in advance.
 
Last edited by a moderator:

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Hey guys,

I was able to make it work after some trial and errors (and a lot searches). Do you think this code can be improved?

Here's my code:
Code:
Sub VL_CompanySize()

    Dim sPath As String, sFile As String
    Dim wb As Workbook
    
    sPath = "C:\Users\sngutierrez\Desktop\MAINICHI FILES"
    sFile = sPath & "01-ALL-IN-ONE-2018IM.xlsm"
    
    On Error Resume Next
    Set wb = Workbooks("01-ALL-IN-ONE-2018IM.xlsm")
    On Error GoTo 0
    
    If wb Is Nothing Then
        Set wb = Workbooks.Open(sFile)
    End If
    
    Dim rngHeaders As Range
    Dim rngHeaderCompanySize As Range
    Dim namedRangeCompanySize As Range
    Dim cell As Range
    Dim lookUpResult

    Const ROW_HEADERS As Integer = 1
    Const HEADER_NAME As String = "Company Size"

    ' Set rngHeaders = Intersect(Worksheets("Sheet1").UsedRange, Worksheets("Sheet1").Rows(ROW_HEADERS))
    Set rngHeaders = Range("A1:Z1")
    Set rngHeaderCompanySize = rngHeaders.Find(HEADER_NAME)

    If rngHeaderCompanySize Is Nothing Then
        MsgBox ("Company Size column not found.")
        Exit Sub
    End If
    
    Set namedRangeCompanySize = Range(rngHeaderCompanySize.Offset(1, 0), rngHeaderCompanySize.End(xlDown))

    For Each cell In namedRangeCompanySize
        On Error Resume Next
        lookUpResult = Application.WorksheetFunction.VLookup(cell, wb.Sheets("SIZE").Range("A:B"), 2, False)
        On Error GoTo 0
        
        If lookUpResult = "" Then
            cell.Interior.Color = 65535
        Else
            cell.Value = lookUpResult
            lookUpResult = ""
        End If
    Next

End Sub
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,214,790
Messages
6,121,608
Members
449,038
Latest member
apwr

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