Application.Match gives type mismatch

后端 未结 1 1592
南方客
南方客 2020-11-27 07:40

I am trying to use Application.Match however it is returning a type mismatch error:13 error. Why?

Dim mySrs as Series
Dim ws as Wor         


        
相关标签:
1条回答
  • 2020-11-27 08:04

    In all likelihood, no match is found. In such a case, Application.Match returns an Excel error code i.e. a Variant/Error whose value is Error 2042 (this corresponds to getting #N/A in Excel).

    Such an Error value cannot be implicitly coerced to a String (which is what MsgBox expects) and thus you get the type mismatch.

    Note that the same Match function can be called using WorksheetFunction.Match. The only difference is how errors are to be handled:

    • With WorksheetFunction, errors are treated as VBA errors, trappable using the On Error syntax.

    • With Application, they return an Excel error code wrapped in a Variant. You can use IsError to see if the returned variable is an Error type variant.

    0 讨论(0)
提交回复
热议问题