Does anyone know how to convert an Excel date to a correct Unix timestamp?
|
feedback
|
|
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 | |||||||
feedback
|
|
If you mean within Excel, you may be able to do it with a formula like this:
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. | |||
|
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. | |||
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. | |||||
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? | |||
|
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. | |||
|
feedback
|
"11/09/2009 3:23:24 PM"? – Matt Ball Nov 9 '09 at 20:23