Change formula to VBA Index Match Multi match values

justvba

New Member
Joined
Jan 6, 2017
Messages
41
I m trying to speed up my VBA and I think it is because of the 3 columns that have foumulasin them.
I am putting a forumula in cells B2(dl1), C2(dl2), D2(dl3) then autofilling to the last line my code is as follows


/code

dl1 = Application.Match("Deal #1", Rows(1), 0)
dl2 = Application.Match("Deal #2", Rows(1), 0)
dl3 = Application.Match("Deal #3", Rows(1), 0)

With ActiveSheet
LASTROW = .Cells(.Rows.Count, "E").End(xlUp).Row
End With
Cells(2, dl1).Select
Selection.FormulaArray = "=IFERROR(INDEX(C6,MATCH(RC1&R1C2,C1&C5,0)),"""")"
Cells(2, dl2).Select
Selection.FormulaArray = "=IFERROR(INDEX(C6,MATCH(RC1&R1C3,C1&C5,0)),"""")"
Cells(2, dl3).Select
Selection.FormulaArray = "=IFERROR(INDEX(C6,MATCH(RC1&R1C4,C1&C5,0)),"""")"
Range(Cells(2, dl1), Cells(2, dl3)).AutoFill Destination:=Worksheets("Testing").Range(Cells(2, dl1), Cells(LASTROW, dl3))


/code

FYI the formula is writen as follows

{=IFERROR(Index($F:$F), Match( $A2&$B$1,$A:$A&$E:$E,0)),"")}
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
You may want to set the screen updating to false at the beginning of your code and setting to True at the end of the code. Likewise you may want to turn off auto calc at the beginning and reset it to auto calc at the end of your code. This may speed up your VBA.
 
Upvote 0
You may want to set the screen updating to false at the beginning of your code and setting to True at the end of the code. Likewise you may want to turn off auto calc at the beginning and reset it to auto calc at the end of your code. This may speed up your VBA.
I just copy and paste value only as soon as the formula is entered and I have screenupdate off. this is the only part of the code that takes about 2 mins to run.
 
Last edited:
Upvote 0
this sped it up a little but not much

With ActiveSheet
LASTROW = .Cells(.Rows.Count, "E").End(xlUp).Row
End With

Do Until ActiveCell.Row > LASTROW
With ActiveSheet
ActiveCell.FormulaArray = "=IFERROR(INDEX(C6,MATCH(RC1&R1C2,C1&C5,0)),"""")"
ActiveCell.Offset(0, 1).Activate
Selection.FormulaArray = "=IFERROR(INDEX(C6,MATCH(RC1&R1C3,C1&C5,0)),"""")"
ActiveCell.Offset(0, 1).Activate
Selection.FormulaArray = "=IFERROR(INDEX(C6,MATCH(RC1&R1C4,C1&C5,0)),"""")"

End With
Range(ActiveCell, ActiveCell(1, -1)).Select
Selection.Copy
Selection.PasteSpecial xlPasteValues
Application.CutCopyMode = False
ActiveCell.Select
Selection.Offset(1, 0).Activate
Loop
 
Last edited:
Upvote 0
Have you tried turning off Auto Calc as I suggested earlier. I do not see this in your current code.
 
Upvote 0
I m trying to speed up my VBA and I think it is because of the 3 columns that have foumulasin them.
I am putting a forumula in cells B2(dl1), C2(dl2), D2(dl3) then autofilling to the last line my code is as follows

FYI the formula is writen as follows

{=IFERROR(Index($F:$F), Match( $A2&$B$1,$A:$A&$E:$E,0)),"")}

Your code is not fast because you are using references to entire columns in an array formula like C1&C5 (A:A&E:E in the spreadsheet formula), ie., concatenating two columns with 1,048,576 rows each. Such references, in array formulas, impair seriously the performance.

EDITED
Try something like this
Code:
Cells(2, dl1).FormulaArray = "=IFERROR(INDEX($F$2:$F$" & LASTROW & _
    ",MATCH($A2&B$1,E$2:E$" & LASTROW & "&$F$2:$F$" & LASTROW & ",0)),"""")"
Cells(2, dl2).FormulaArray = "=IFERROR(INDEX($F$2:$F$" & LASTROW & _
    ",MATCH($A2&C$1,E$2:E$" & LASTROW & "&$F$2:$F$" & LASTROW & ",0)),"""")"
Cells(2, dl3).FormulaArray = "=IFERROR(INDEX($F$2:$F$" & LASTROW & _
    ",MATCH($A2&D$1,E$2:E$" & LASTROW & "&$F$2:$F$" & LASTROW & ",0)),"""")"
    
Range(Cells(2, dl1), Cells(2, dl3)).AutoFill _
    Destination:=Worksheets("Testing").Range(Cells(2, dl1), Cells(LASTROW, dl3))

M.
 
Last edited:
Upvote 0
I edited the code above to set absolute references (including $) in columns E and F.

M.
 
Upvote 0
oops... sorry, i concatenated the wrong columns E&F - should be A&E

Try
Code:
Cells(2, dl1).FormulaArray = "=IFERROR(INDEX($F$2:$F$" & LASTROW & _
    ",MATCH($A2&B$1,$A$2:$A$" & LASTROW & "&$E$2:$E$" & LASTROW & ",0)),"""")"
Cells(2, dl2).FormulaArray = "=IFERROR(INDEX($F$2:$F$" & LASTROW & _
    ",MATCH($A2&C$1,$A$2:$A$" & LASTROW & "&$E$2:$E$" & LASTROW & ",0)),"""")"
Cells(2, dl3).FormulaArray = "=IFERROR(INDEX($F$2:$F$" & LASTROW & _
    ",MATCH($A2&D$1,$A$2:$A$" & LASTROW & "&$E$2:$E$" & LASTROW & ",0)),"""")"

Range(Cells(2, dl1), Cells(2, dl3)).AutoFill _
    Destination:=Worksheets("Testing").Range(Cells(2, dl1), Cells(LASTROW, dl3))

M.
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,395
Members
449,446
Latest member
CodeCybear

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