Click here to Skip to main content
Click here to Skip to main content

Excel serial date to Day, Month, Year and vise versa

By , 12 Aug 2002
 

Introduction

For a little project of mine, I needed to convert a serial date number to day/month/year (DMY) and vise versa. The serial number came from date field in a converted Paradox database and seemed to be exactly the same as the serial date in Microsoft Excel, hence the article name. After some googling I learned that the Excel serial date is related to Julian date, and found a speedy algorithm to convert these numbers to DMY and vise versa.

Excel Serial Date Number

Now what is an Excel serial date number? 37477 is a serial date number and is the number of days since 1-1-1900. 37477 actually translates to Aug 9, 2002, the date of writing this article.

The number of days since 1-1-1900 isn't that hard to calculate of course, once you know the leap years. Microsoft Excel however contains a bug with its date calculation: it considers 29-02-1900 as a valid date, but 1900 isn't a leap year! 29-02-1900 is not a valid date!

According to the stories, Microsoft decided to duplicate this date bug from Lotus 123, which was the dominating spreadsheet application at the time Excel was being written. This allowed Excel to open Lotus 123 spreadsheets without date problems.

(Note that a serial date number may also contain a fraction that denotes the time. It's actually the percentage of 24 hours, but that's not for this article.)

Mac Excel Serial Date number

Excel on the Apple Mac uses a slightly different Serial Date number base: the number of days since 1-1-1904. That's why Excel also features a "1904 Date System" checkbox in its Options (Calculation tab). I won't go into this futher.

Translating Serial Date Number to DMY

First of all, credit where credit is due. I got the basic algorithm from http://serendipity.magnet.ch/hermetic/cal_stud/jdn.htm. It's about converting a Julian date to DMY using integer calculations. I won't bore you with the theory (following the above hyperlink), but the original Julian has a different base date.

With an addition of a certain number, the algorithm comes close to the Excel serial date. And when the 29-02-1900 issue is handled, we've got an Excel serial date to Day, Month, Year calculation!

void ExcelSerialDateToDMY(int nSerialDate, int &nDay, 
                          int &nMonth, int &nYear)
{
    // Excel/Lotus 123 have a bug with 29-02-1900. 1900 is not a
    // leap year, but Excel/Lotus 123 think it is...
    if (nSerialDate == 60)
    {
        nDay    = 29;
        nMonth    = 2;
        nYear    = 1900;

        return;
    }
    else if (nSerialDate < 60)
    {
        // Because of the 29-02-1900 bug, any serial date 
        // under 60 is one off... Compensate.
        nSerialDate++;
    }

    // Modified Julian to DMY calculation with an addition of 2415019
    int l = nSerialDate + 68569 + 2415019;
    int n = int(( 4 * l ) / 146097);
            l = l - int(( 146097 * n + 3 ) / 4);
    int i = int(( 4000 * ( l + 1 ) ) / 1461001);
        l = l - int(( 1461 * i ) / 4) + 31;
    int j = int(( 80 * l ) / 2447);
     nDay = l - int(( 2447 * j ) / 80);
        l = int(j / 11);
        nMonth = j + 2 - ( 12 * l );
    nYear = 100 * ( n - 49 ) + i + l;
}

DMY to Excel Serial Date

Calculate an Excel serial date from Day, Month, Year. The function assumes that the day, month and year are valid date numbers.

int DMYToExcelSerialDate(int nDay, int nMonth, int nYear)
{
    // Excel/Lotus 123 have a bug with 29-02-1900. 1900 is not a
    // leap year, but Excel/Lotus 123 think it is...
    if (nDay == 29 && nMonth == 02 && nYear==1900)
        return 60;

    // DMY to Modified Julian calculatie with an extra substraction of 2415019.
    long nSerialDate = 
            int(( 1461 * ( nYear + 4800 + int(( nMonth - 14 ) / 12) ) ) / 4) +
            int(( 367 * ( nMonth - 2 - 12 * ( ( nMonth - 14 ) / 12 ) ) ) / 12) -
            int(( 3 * ( int(( nYear + 4900 + int(( nMonth - 14 ) / 12) ) / 100) ) ) / 4) +
            nDay - 2415019 - 32075;

    if (nSerialDate < 60)
    {
        // Because of the 29-02-1900 bug, any serial date 
        // under 60 is one off... Compensate.
        nSerialDate--;
    }

    return (int)nSerialDate;
}

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)

About the Author

Victor Vogelpoel
Software Developer (Senior)
Netherlands Netherlands
Member
Victor is consulting in The Netherlands.

His interests include Windows and web application development using .NET technologies and even some Apache/PHP/MySQL...

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
AnswerRe: Works great for date, what about for time?memberMember 22281364 Aug '10 - 16:26 
the same problem
if you konw the solution, please tell me! thank you.
I like c++

GeneralYEARmembergtown717 May '07 - 4:20 
does anyone know if there is a functin to put in a new column to get the abbreviated year and month of a previous column in the same row???
 

 
Ex. Row A B C D
3/14/2007 5/16/2007 2007-3 2007-5
 
Instead of using the YEAR MONTH funcion for each row is there a universal function that I could designate to the whole column of C and D???
 
Thanks!
GeneralGoing off after Febuvary...membervijaicmo12 Mar '07 - 0:23 
Hey Victor,
 
First of all thank you for ur post. Very helpful article.
I am trying to convert your fucntion DMY to Excel Serial Date to PHP and I am newbe in PHP.
function DMYToExcelSerialDate($nDay, $nMonth, $nYear)
{
// Excel/Lotus 123 have a bug with 29-02-1900. 1900 is not a
// leap year, but Excel/Lotus 123 think it is...
if ($nDay == 29 && $nMonth == 02 && $nYear==1900)
return 60;
 
// DMY to Modified Julian calculate with an extra substraction of 2415019.
$nSerialDate = ((1461 * ($nYear + 4800 + ($nMonth - 14) / 12) / 4) +
( 367 * ($nMonth - 2 - 12 * ( ($nMonth - 14) / 12) ) / 12) -
( 3 * ($nYear + 4900 + ($nMonth - 14) / 12) / 100) / 4)+
$nDay - 2415019 - 32075;
 
if ($nSerialDate <= 60)
{
// Because of the 29-02-1900 bug, any serial date
// under 60 is one off... Compensate.
$nSerialDate--;
}
 
return $nSerialDate;
}
 
I have put some constants for date values (1st of every month in a year) like from 1/1/2006 (DD,MM,YYYY), 1/2/2006, 1/3/2006.... 1/12/2006(DD/MM/YYYY). But when I am calling this function for convertion its giving the serial numbers.
 
39083
39114
39144
39175
39205
39235
39266
39296
39327
39357
39388
39418 Which represents in Excel...
 
1/1/2007
1/2/2007
3/3/2007
3/4/2007
3/5/2007
2/6/2007
3/7/2007
2/8/2007
2/9/2007
2/10/2007
2/11/2007
2/12/2007
 
This means its going out after februvary. Could u plz help with this. Thanks in advance.
 


 
Vijai
QuestionBut how can I know if the cell value is a Date?memberstanley guan7 Oct '05 - 16:51 
When I navigate excel cells, how can I know if the cell value is date?
 
stanley
AnswerRe: But how can I know if the cell value is a Date?memberVictor Vogelpoel7 Oct '05 - 22:56 
Excel recognizes date formats like "10 oct 2005" and stores it internally as a number, the number of days since 1-1-1900. This is called a "serial date". You could format a number to show up as a date using the cell's format options...

 
VictorV
GeneralRe: But how can I know if the cell value is a Date?memberSuunil21 Aug '09 - 2:21 
so what if I have 2 cells ..1st one has value 40524 & the 2nd has 12/12/2010. When I get the values both of them are returned as 40524 !! So how do you determine programatically which cell actually was meant for numbers & which was for date because if I have to display the contents of a row (without knowing the format) I want to show 12/12/2010 as 12/12/2010 & not as 40524.
 
I am using the following code to get values from Excel
Range vrange = worksheet.get_Range("F" + i.ToString(), "V" + i.ToString());
System.Array vmyvalues = (System.Array)vrange.Cells.Value2;
string []  ret = ConvertToStringArray(vmyvalues);
 
As you can see i am getting values from column F to V & when I iterate through the above string array "ret" I can see the value as of 12/12/2010 as 40524 where as I need it as is shown by excel
 
Thanks for help.
SunTan
GeneralRe: But how can I know if the cell value is a Date?memberVictor Vogelpoel23 Aug '09 - 23:51 
Simple answer: you don't know.
 
But what is the use to scrape the whole excel worksheet and hoping it is a date?
 
VictorV

GeneralNumber off by 183sussAnonymous29 Aug '05 - 4:33 
i am trying to convert 01-08-2005 ( august 1st) to serial number and it gives me 31-01-2006 ? Would just like to know why is that? TY
GeneralRe: Number off by 183sussAnonymous29 Aug '05 - 6:03 
Nvm, Its me who's a jackass. Big Grin | :-D I had to use Fix function for all divisions cuz i use vb instead of c# ( which i did not do). Now it works like a charm.
GeneralDMYToExcelSerialDate doesn't work for 28th Feb 1900membercrusby9 Feb '05 - 23:09 
I believe the last test should be
 
if (nSerialDate <= 60)
 
Otherwise, it works fine, thank you very much.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 13 Aug 2002
Article Copyright 2002 by Victor Vogelpoel
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid