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

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
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,748
Messages
6,126,654
Members
449,326
Latest member
asp123

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