Converting time stamps in excel to dates

后端 未结 13 1108
长情又很酷
长情又很酷 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条回答
  •  -上瘾入骨i
    2020-12-23 13:07

    Be aware of number of digits in epoch time. Usually they are ten (1534936923) ,then use:

    =(A1 / 86400) + 25569    
    

    For thirteen digits (1534936923000) of epoch time adjust the formula:

    =(LEFT(A1,LEN(A1)-3) / 86400) + 25569    
    

    to avoid

    ###################################
    

    Dates or times that are negative or too large display as ######

    See more on https://www.epochconverter.com/

提交回复
热议问题