VBA Index Match Array

Razorramen

New Member
Joined
May 10, 2018
Messages
1
I'm getting a compile error "Expected: end of statement" with "Pass" being highlighted. Any help getting this code to work would be greatly appreciated.


Code:
Range("I2").Select
    ActiveCell.FormulaArray= "=IFERROR(Application.WorksheetFunction.Index(Practical!$O$1:$O$10000,Application.WorksheetFunction.Match($A2&"Pass",Practical!$A$1:$A$10001&Practical!$M$1:$M$10001,0)),"")"

Below is the code in the worksheet that works correctly

Code:
{=IFERROR(INDEX(Practical!$O$1:$O$10000,MATCH($A2&"Pass",Practical!$A$1:$A$10000&Practical!$M$1:$M$10000,0)),"")}
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Your problem is that excel is reading the Double quotes just before the Pass as the end of the string which what you want as a formula. The way round this is to use the ascii character function CHR(34) for double quotes
Something like this (untested)
Code:
ActiveCell.FormulaArray= "=IFERROR(Application.WorksheetFunction.Index(Practical!$O$1:$O$10000,Application.WorksheetFunction.Match($A2&" & chr(34) & "Pass" & Chr(34) & ",Practical!$A$1:$A$10001&Practical!$M$1:$M$10001,0))," & chr(34) & chr(34)&")"
 
Last edited:
Upvote 0
Try this.
Code:
Range("I2").FormulaArray = "=IFERROR(INDEX(Practical!$O$1:$O$10000,MATCH($A2&""Pass"",Practical!$A$1:$A$10000&Practical!$M$1:$M$10000,0)),"""")"
 
Upvote 0

Forum statistics

Threads
1,215,095
Messages
6,123,072
Members
449,093
Latest member
ripvw

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