Converting time stamps in excel to dates

后端 未结 13 1111
长情又很酷
长情又很酷 2020-12-23 12:38

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 dat

13条回答
  •  粉色の甜心
    2020-12-23 13:31

    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.

提交回复
热议问题