0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Epoc Timeの変換式(Excel)

Last updated at Posted at 2019-09-16

Epoch TimeのExcel上でyyyy/mm/dd形式に変換したい場合、下記変換式を適用のもと、セルの書式設定を「yyyy/mm/dd 等」に変更する。

Epoc Time(secound)の変換式

 = (<TimeStamp> / 86400) + DATE(1970,1,1)

Epoc Time(Millisecound)の変換式

 = (<TimeStamp> / 86400000) + DATE(1970,1,1)

以上

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?