Categories
Site Pages
Find Me On...
Just so you know
- Your IP address is: 38.107.179.214
Excel Timestamp to Date
Today, I had the problem of converting a timestamp to a readable time format inside excel. Not quite as easy as I would have hoped for, but the solution is fairly painless.
In the excel column you wish to display the date, you need to place the following formula.
=(((COLUMN_ID_HERE/60)/60)/24)+DATE(1970,1,1)
You would then need to replace COLUMN_ID_HERE with the cell that holds the timestamp. e.g. A1
The above formula can be simplified, but I think the above explains a little more what is actually being done to the data
You would then need to format the cell to be dd/mm/yyyy hh:mm and you are done
This entry was posted
on Tuesday, May 25th, 2010 at 7:23 pm and is filed under General.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.












worked perfectly