1
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 3 years have passed since last update.

Excel関数の日付計算

Posted at

・要件

SFDCのGMT時間はJST時間のExcel計算。

・対応案

GMT時間の形式:2021-10-04T15:00:00.000ZからDateValueとTimeValueで計算し、後Textでフォーマットする

・例

2021-10-04T15:00:00.000Z →2021/10/5 00:00:00

     =TEXT(DATEVALUE(LEFT(AM9,10))+TIMEVALUE(MID(AM9,12,8)) + TIMEVALUE("09:00:00"),"YYYY/MM/DD HH:mm:SS")

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