So in Excel, we know it\'s possible to test against multiple criteria via concatenation, like this:
MATCH(criteria1&criteria2, Range(), 0)
You still need to send the MATCH argument body as a string. The '+' does not concatenate.
MATCH
WorksheetFunction.Match(criteria1 & "&" & criteria2, Range(), 0)
Should concatenate the two values and execute the match.