Created
June 8, 2010 08:30
-
-
Save mrcgrtz/429760 to your computer and use it in GitHub Desktop.
Formula to convert a UNIX timestamp (in cell A1) to Excel date format.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=DATE(1970;1;1)+(LEFT(A1;10)/24/60/60) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
=DATE(1970, 1, 1) + (A1 / 24 / 60 / 60)