Converting time stamps in excel to dates

2019-03-08 13:34发布

I have a very large excel spread sheet that has a column of time stamps. Does anyone know convert that over to a date? Is there a function I can use? I tried format cell date but that doesn't work. My file is 91,568 KB. If there is a simpler way to this that would be great. I'm open to ideas.

Thank you in advance :)

P.S. I don't know any programming languages

11条回答
够拽才男人
2楼-- · 2019-03-08 14:16

i got result from this in LibreOffice Calc :

=DATE(1970,1,1)+Column_id_here/60/60/24

查看更多
霸刀☆藐视天下
3楼-- · 2019-03-08 14:17

Use this formula and set formatting to the desired time format:

=(((COLUMN_ID_HERE/60)/60)/24)+DATE(1970,1,1)

Source: http://www.bajb.net/2010/05/excel-timestamp-to-date/ Tested in libreoffice

查看更多
爱情/是我丢掉的垃圾
4楼-- · 2019-03-08 14:17

If you get a Error 509 in Libre office you may replace , by ; in the DATE() function

=(((COLUMN_ID_HERE/60)/60)/24)+DATE(1970;1;1)
查看更多
Luminary・发光体
5楼-- · 2019-03-08 14:26

below formula worked form me in MS EXEL

=TEXT(CELL_VALUE/24/60/60/1000 + 25569,"YYYY-MM-DD HH:MM")

CELL_VALUE is timestamp in milliseconds

here is explanation for text function.

查看更多
6楼-- · 2019-03-08 14:26

The answer of @NeplatnyUdaj is right but consider that Excel want the function name in the set language, in my case German. Then you need to use "DATUM" instead of "DATE":

=(((COLUMN_ID_HERE/60)/60)/24)+DATUM(1970,1,1)
查看更多
登录 后发表回答