is it possible to use UsedRange with VLOOKUP?

korhan

Board Regular
Joined
Nov 6, 2009
Messages
215
Here is a piece of my code:



Basically, I am trying to get UsedRange from one workbook and use it as a range in VLOOKUP statement.

'usedRangeDestination.Select
For i = 2 To FinalRowMain
strRecipient = Application.VLookup(wsMain.Cells(i, 3), usedRangeDestination.Address, 3, False)
On Error Resume Next
If Recipient = "Error 2042" Then
'nothing found'
ElseIf Recipient = wsMain.Cells(FinalRowMain, 3) Then
wsMain.Cells(FinalRowMain, 14) = "Match"
End If
Next i
wbDestination.Close
myFileName = Dir


Is this possible?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Hi.

Yes!

Try something like this:
Code:
Sub Remote_VBLookup()

    Dim wb As Workbook: Set wb = Workbooks.Open(ThisWorkbook.Path & "\" & "mySpreadsheet.xlsm")
    Dim usedRangeDestination As Range: Set usedRangeDestination = wb.Worksheets("Sheet1").UsedRange

    Dim wsMain As Worksheet: Set wsMain = ThisWorkbook.Worksheets("Sheet1")
    Dim strRecipient As Variant
    
    For i = 2 To 2 'FinalRowMain
        strRecipient = Application.VLookup(wsMain.Cells(i, 3), usedRangeDestination, 3, False)
        On Error Resume Next
        If Recipient = "Error 2042" Then
        'nothing found'
        ElseIf Recipient = wsMain.Cells(FinalRowMain, 3) Then
        wsMain.Cells(FinalRowMain, 14) = "Match"
        End If
    Next i
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

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