1
2

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.

エクセルのマクロで秒を時:分:秒に変換する

Posted at

ユーザーのログをマクロで成形しているときに、とあるアクションに対してどれだけの時間要したかを判断してセルに加算していたのですが。DateDiffの引数"s"を使いログの時間の差分を計算していたので、セルにはいっているのは秒数になっていてパッと見でどれだけ時間が流れたのか分かりませんでした。

なので

http://www.hanatyan.sakura.ne.jp/vb6/datetime05.htm
を参考に下記の変換を行いました。

Range("A1") = CStr(CDate(Range("A1").Value / 86400#)) 

86400は一日の秒数です、それを基準にどれだけの時間が経ったかを結果を出して成形しているわけですね。

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?