VBA VLookup Performance

kbashaw

New Member
Joined
Feb 27, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi there! Does anyone have a suggestion about improving the performance of this lookup? The code works but it take 9 minutes to run through 47,000 records. I technically don't need the message error running but I couldn't figure out how to get it to run without it. Is there another way I can run this code faster? Thanks in advance.

Sub VLookupStep1()
Dim Sh1, Sh2 As Worksheet
Dim MyRange As Range

Set Sh1 = ThisWorkbook.Sheets("Step1")
Set Sh2 = ThisWorkbook.Sheets("P21")
Set MyRange = Sh2.Range("B:C")

LastRow = Sh1.Range("C" & Rows.Count).End(xlUp).Row
For i = 2 To LastRow
On Error GoTo Error:
Sh1.Range("D" & i).Value = Application.WorksheetFunction.VLookup(Sh1.Range("C" & i), MyRange, 2, False)
Next i
Error:
Sh1.Range("D" & i).Value = "N/A"
Resume Next
End Sub
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Behind the link there is a thread with the lookup function I made. However, without sample data it is difficult to assess its suitability for your problem.


The operation requires that the information being searched is unique and the search match is exact.
 
Upvote 0
Welcome to the MrExcel Message Board! :)

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at:

There is no need to repeat the link(s) provided above but if you have posted the question at other places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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