The information in this article applies to:
SYMPTOMSWhen you run a macro that uses a date from a worksheet cell, the date returned by the macro may be four years and one day earlier than the actual date. CAUSE
A macro returns a date that is four years and one day earlier when you
select 1904 Date System in the Calculation tab of the Preferences dialog
box, and when one of the following conditions is true:
-and- -or- WORKAROUNDMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/overview/overview.aspTo see an example of the problem described in this article, follow these steps:
To get this example to return the correct dates, declare the variables as
Variant. To do this, change the following line of code from the previous
example:
to
After changing the line of code, rerun the GetDates1 Macro. The correct
dates will be returned.
STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. MORE INFORMATION
Visual Basic for Applications does not automatically detect the 1904 date
system and convert the date as necessary. If a user selects the 1904 date
system in Microsoft Excel, and runs a macro that reads a date from a
worksheet cell, the difference may be four years and one day (the extra one
day accounts for the leap year). For example, a date of 9/1/96 in the 1904
date system may return a date of 8/31/92.
REFERENCESFor more information about the 1904 date system, click Contents And Index on the Help menu (or on the Balloon Help menu if you are using a version of the Macintosh operating system earlier than 8.0), click the Index button in Microsoft Excel Help, type the following text 1900/1904 date systemand then click Show Topics. Select the "Tips on entering dates and times" topic, and click Go To. If you are unable to find the information you need, ask the Office Assistant. Additional query words: XL98 vba
Keywords : kbprg kbdta xlvbainfo OffVBA |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |