Does anyone know how to convert an Excel date to a correct Unix timestamp?

link|improve this question
What do you mean by an "excel date"? Do you mean text formatted as a human-readable date-time string like "11/09/2009 3:23:24 PM"? – Matt Ball Nov 9 '09 at 20:23
feedback

6 Answers

If we assume the date in Excel is in A1 cell formatted as Date and the Unix timestamp should be in a A2 cell formatted as number the formula in A2 should be:

= (A1 * 86400) - 2209075200

where:

86400 is the number of seconds in the day 2209075200 is the number of seconds between 1900-01-01 and 1970-01-01 which are the base dates for Excel and Unix timestamps.

The above is true for Windows. On Mac the base date in Excel is 1904-01-01 and the seconds number should be corrected to: 2082844800

link|improve this answer
It doesn't work exactly on windows at least. It is off by 19 hours. – LLBBL Aug 19 '11 at 15:55
2  
So it should be this: = (A1 * 86400) - 2209143600 – LLBBL Aug 19 '11 at 15:59
feedback

If you mean within Excel, you may be able to do it with a formula like this:

=(A1 - 25569)*86400

Where A1 is a cell set to display as a date. Set the cell with the above formula to display as a plain numder, and I think it will display the timestamp value.

Based on this page about the reverse transformation.

link|improve this answer
feedback

You're apparently off by one day, exactly 86400 seconds. Use the number 2209161600 Not the number 2209075200 If you Google the two numbers, you'll find support for the above. I tried your formula but was always coming up 1 day different from my server. It's not obvious from the unix timestamp unless you think in unix instead of human time ;-) but if you double check then you'll see this might be correct.

link|improve this answer
This is correct, due to Excel calculating the first year as a leap year even though it isn't. – ANisus Sep 9 '11 at 9:27
feedback

Don't forget that on January 19, 2038 the Unix Time Stamp will cease to work due to a 32-bit overflow. Before this moment millions of applications will need to either adopt a new convention for time stamps or be migrated to 64-bit systems which will buy the time stamp a "bit" more time.

link|improve this answer
3  
more like 32bits more time. – user606723 Sep 15 '11 at 16:55
feedback

Windows:

Excel Timestamp = (Unix Timestamp - 25569) * 86400 Unix Timestamp = (Excel Timestamp / 86400) + 25569

MAC OS X:

Excel Timestamp = (Unix Timestamp - 24107) * 86400 Unix Timestamp = (Excel Timestamp / 86400) + 24107

86400 = Seconds in a day 25569 = Days between 1/1/1970 and 1/1/1900 (min date in Windows Excel) 24107 = Days between 1/1/1970 and 1/2/1904 (min date in MAC OS X Excel) <- infuriating eh?

link|improve this answer
feedback

Here is an example on how to convert an Excel date to a UNIX timestamp in PHP:

http://fczaja.blogspot.com/2011/06/convert-excel-date-into-timestamp.html

In addtion that page explains how Excel stores Dates internally.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.