Converting Unix time stamp to dd/mm/yyyy hh:mm:ss

蹲街弑〆低调 提交于 2019-11-28 14:35:29

You are going to have to provide some conversion from the UNIX (aka POSIX) timestamp to an Excel Date format. Typically this is performed by dividing the timestamp by 86,400 (number of seconds in a day) and adding 25,569 (number of days from 01-Jan-1900 to 01-Jan-1970). With a raw value that is in synch with the Excel date/time numerical system, the TEXT function can create the date/time.

=text(c1/86400 + 25569, "dd/mm/yyyy hh:mm:ss")  'yields 31/08/2014 16:23:22
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!