Microsoft KB Archive/323218

From BetaArchive Wiki
Knowledge Base


Article ID: 323218

Article Last Modified on 2/1/2007



APPLIES TO

  • Microsoft Excel X for Mac
  • Microsoft Excel 2001 for Mac
  • Microsoft Excel 98 for Macintosh



This article was previously published under Q323218

For a Microsoft Excel for Windows version of this article, see 214068.


SUMMARY

Microsoft Excel calculates date serial numbers starting with January 1, 1904 and later. When you use a date that is earlier than the year 1904, the date value appears as a text string.

One way to determine if a date is formatted as a text string is by looking at the alignment of the value in the cell:

  • The default format for dates and values is right-aligned.
  • The default format for text strings is left-aligned.


MORE INFORMATION

If a date is formatted as a text value, you cannot use it in certain calculations. For example, you cannot easily find out the number of years between two dates if one of the dates is earlier than the year 1904.

The following example describes a formula to find the number of years between two dates when one of the dates is earlier than the year 1904.

Example

If cell A1 of your worksheet contains the date 1/1/1865, and you want to calculate the elapsed years between the date in cell A1 and today's date, use the following formula:

=IF(ISTEXT(A1),YEAR(TODAY())-RIGHT(A1,4),(TODAY()-A1)/365)


If the current year is 1999, this formula returns 134, which indicates that the difference in years between the two dates is 134 years.

The following is an explanation of this formula:

The ISTEXT() function performs a logical test as to whether the string found in A1 is text or not.

The YEAR() function is used in this case to convert the date returned by the TODAY() function to the actual year (that is, it evaluates 1/1/1999 to 1999).

The RIGHT() function is used to extract only the last four values of the string.

REFERENCES

For more information about how to create and edit formulas, click Microsoft Excel Help on the Help menu, type formula in the Office Assistant or the Answer Wizard, and then click Search to view the topics returned.



Additional query words: MacXLX Mac XLX XL2001 XL98

Keywords: kbinfo KB323218