XL97: Error 2015 or Type Mismatch Using Evaluate with Dates

ID: Q190831

The information in this article applies to:

SYMPTOMS

In Microsoft Excel 97 for Windows, if you use the Evaluate method in a Visual Basic for Applications macro to evaluate a statement or formula that contains a date, the method may return either of the following error messages:

   Run-time error '13':
   Type mismatch

   -or-

   Error 2015

CAUSE

This problem may occur when the following conditions are true:

Specifically, the problem occurs because Microsoft Excel tries to evaluate the date using the month/day/year date order, even if the date was not entered using that date order. If the date includes a four-digit year, Microsoft Excel is able to determine the correct date; if not, the date may not be able to be resolved. If this is the case, Microsoft Excel returns an error value.

See the "More Information" section later in this article for a demonstration of this problem.

WORKAROUND

To prevent this problem from occurring, use any of the following methods:

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.

MORE INFORMATION

To reproduce this problem, follow these steps:

1. Start Microsoft Excel 97. On the Tools menu, point to Macro, and click

   Visual Basic Editor.

2. On the View menu, click Immediate Window. Or, press CTRL+G.

3. Type the following lines of code in the Immediate window. Press ENTER

   after you enter each line of code:

      ?Application.Evaluate("=""2025/7/5""+1")
      ?Application.Evaluate("=""7/5/25""+1")
      ?Application.Evaluate("=""25/7/5""+1")

Note the following: Also, if you run the following macro

   Sub Test()
       MsgBox Application.Evaluate("=""25/7/5""+1")
   End Sub

you will receive a run-time error 13 (type mismatch) error message. The problem occurs because the date uses a two-digit year and is entered using year/month/day date order.

Additional query words: XL97 year2000

Keywords          : kb2000 xlvbainfo xlformat 
Version           : WINDOWS:97
Platform          : WINDOWS
Issue type        : kbprb

Last Reviewed: November 2, 1998