Index Match VBA is very slow, and question to index match loop through column as well

hwong8848

New Member
Joined
Oct 9, 2022
Messages
19
Office Version
  1. 365
Platform
  1. Windows
Hi all, I have made a little VBA to lookup value from another sheet but it is very slow already loop thru row. How can I speed it up and also make it loop through row?

VBA Code:
Sub filldata()
'find rollupcode from data abailability tab

    'Speed up VBA, turning off other components
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    Application.EnableEvents = False
    
    'Set Variable
    Dim wb1 As Workbook, wb2 As Workbook, ws1 As Worksheet, ws2 As Worksheet
    
    'Market Data File
    Set wb1 = Workbooks("checking_v0.2.xlsx")
    Set ws1 = wb1.Worksheets("data availability check")
    Set ws3 = wb1.Worksheets("peer group market data")
    
    'Template
    Set wb2 = Workbooks("Benchmarking.xlsm")
    Set ws2 = wb2.Worksheets("MarketData")
    


    'For Vlookup Roll up Grade
    ws1.Activate
    Set fulljobcode = ws1.Range("J2", Range("J" & Rows.Count).End(xlUp))
    Set rollupcode = ws1.Range("K2", Range("K" & Rows.Count).End(xlUp))
    Set vlookuparray = ws1.Range("J:K")
    
    With ws2
    
    wb2.Activate
    lastRow = Range("B" & Rows.Count).End(xlUp).row

        For r = 3 To lastRow
        Cells(r, 2) = Application.VLookup(Cells(r, 1), vlookuparray, 2, False)
        Next r

    End With
    
    'For Index Match Market Data
    Set col_array = ws3.Range("A1:PN1")
    Set row_array = ws3.Range("A2:A14365")
    index_array = ws3.Range("A1:PN14365")
    lastRow = ws2.Range("B" & Rows.Count).End(xlUp).row
    'lastCol = ws2.Range("C2").End(xlToRight).col
    
    With ws2
    
        For i = 3 To lastRow
        On Error Resume Next
        Cells(i, 3) = Application.Index(index_array, _
        Application.Match(Cells(i, 2), row_array, 0), Application.Match(Cells(1, 3), col_array, 0))
        
        Next i

    'Turn things back on
    Application.Calculation = xlCalculationAutomatic
    Application.EnableEvents = True
    Application.ScreenUpdating = True
    
    End With
    
End Sub
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Hi and welcome to MrExcel!

I think this value in row_array should also be A1, to match the index_array.
Rich (BB code):
    Set col_array = ws3.Range("A1:PN1")
    Set row_array = ws3.Range("A2:A14365")
    index_array = ws3.Range("A1:PN14365")

Try the following code with 16,000 records and columns from A to PN, the process is 1.5 seconds.

VBA Code:
Sub filldata()
'find rollupcode from data abailability tab

  'Set Variable
  Dim wb1 As Workbook, wb2 As Workbook
  Dim ws1 As Worksheet, ws2 As Worksheet, ws3 As Worksheet
  Dim dic As Object
  Dim a As Variant, b As Variant, c As Variant
  Dim i As Long, col As Long
  Dim f As Range
  
  'Market Data File
  Set wb1 = Workbooks("checking_v0.2.xlsx")
  Set ws1 = wb1.Worksheets("data availability check")
  Set ws3 = wb1.Worksheets("peer group market data")
  
  'Template
  Set wb2 = Workbooks("Benchmarking.xlsm")
  Set ws2 = wb2.Worksheets("MarketData")
  
  'Create dictionary
  Set dic = CreateObject("Scripting.Dictionary")
  dic.comparemode = vbTextCompare
  
  a = ws1.Range("J2:K" & ws1.Range("J" & Rows.Count).End(xlUp).Row).Value
  For i = 1 To UBound(a, 1)
    If Not dic.exists(a(i, 1)) Then
      dic(a(i, 1)) = a(i, 2)
    End If
  Next

  'For Vlookup Roll up Grade
  b = ws2.Range("A3", ws2.Range("A" & Rows.Count).End(xlUp)).Value
  ReDim c(1 To UBound(b, 1), 1 To 1)
  For i = 1 To UBound(b, 1)
    If dic.exists(b(i, 1)) Then
      c(i, 1) = dic(b(i, 1))
    End If
  Next
  ws2.Range("B3").Resize(UBound(c, 1)).Value = c
    
  Erase a, b, c
  dic.RemoveAll
  
  'For Index Match Market Data
  a = ws3.Range("A1:PN" & ws3.Range("A" & Rows.Count).End(3).Row).Value
  Set f = ws3.Range("A1:PN1").Find(ws2.Range("C1").Value, , xlValues, xlWhole, , , False)
  If Not f Is Nothing Then
    col = f.Column
    For i = 1 To UBound(a, 1)
      If Not dic.exists(a(i, 1)) Then
        dic(a(i, 1)) = a(i, col)
      End If
    Next
    b = ws2.Range("B3:B" & ws2.Range("A" & Rows.Count).End(xlUp).Row).Value
    ReDim c(1 To UBound(b, 1), 1 To 1)
    For i = 1 To UBound(b, 1)
      If dic.exists(b(i, 1)) Then
        c(i, 1) = dic(b(i, 1))
      End If
    Next
    ws2.Range("C3").Resize(UBound(c, 1)).Value = c
  End If

End Sub



If the index is correct as you have it in your code, then try the following:

VBA Code:
Sub filldata()
'find rollupcode from data abailability tab

  'Set Variable
  Dim wb1 As Workbook, wb2 As Workbook
  Dim ws1 As Worksheet, ws2 As Worksheet, ws3 As Worksheet
  Dim dic As Object
  Dim a As Variant, b As Variant, c As Variant
  Dim i As Long, col As Long
  Dim f As Range
  
  'Market Data File
  Set wb1 = Workbooks("checking_v0.2.xlsx")
  Set ws1 = wb1.Worksheets("data availability check")
  Set ws3 = wb1.Worksheets("peer group market data")
  
  'Template
  Set wb2 = Workbooks("Benchmarking.xlsm")
  Set ws2 = wb2.Worksheets("MarketData")
  
  'Create dictionary
  Set dic = CreateObject("Scripting.Dictionary")
  dic.comparemode = vbTextCompare
  
  a = ws1.Range("J2:K" & ws1.Range("J" & Rows.Count).End(xlUp).Row).Value
  For i = 1 To UBound(a, 1)
    If Not dic.exists(a(i, 1)) Then
      dic(a(i, 1)) = a(i, 2)
    End If
  Next

  'For Vlookup Roll up Grade
  b = ws2.Range("A3", ws2.Range("A" & Rows.Count).End(xlUp)).Value
  ReDim c(1 To UBound(b, 1), 1 To 1)
  For i = 1 To UBound(b, 1)
    If dic.exists(b(i, 1)) Then
      c(i, 1) = dic(b(i, 1))
    End If
  Next
  ws2.Range("B3").Resize(UBound(c, 1)).Value = c
    
  Erase a, b, c
  dic.RemoveAll
  
  'For Index Match Market Data
  a = ws3.Range("A2:PN" & ws3.Range("A" & Rows.Count).End(3).Row).Value
  Set f = ws3.Range("A2:PN1").Find(ws2.Range("C1").Value, , xlValues, xlWhole, , , False)
  If Not f Is Nothing Then
    col = f.Column
    For i = 2 To UBound(a, 1)
      If Not dic.exists(a(i, 1)) Then
        dic(a(i, 1)) = a(i - 1, col)
      End If
    Next
    b = ws2.Range("B3:B" & ws2.Range("A" & Rows.Count).End(xlUp).Row).Value
    ReDim c(1 To UBound(b, 1), 1 To 1)
    For i = 1 To UBound(b, 1)
      If dic.exists(b(i, 1)) Then
        c(i, 1) = dic(b(i, 1))
      End If
    Next
    ws2.Range("C3").Resize(UBound(c, 1)).Value = c
  End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,588
Messages
6,120,409
Members
448,959
Latest member
camelliaCase

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