如何使用Lotus Notes中的公式语言按时区修补日期/时间类型字段

时间:2014-09-11 07:40:46

标签: lotus-notes lotus

我的LN文档中有一个日期/时间字段。日期存储为“11/09/2014 11:04:25 ZE4”。我希望用11/09/2013 11:04:25 ZE8修补相同的内容。 如何通过公式语言来做?

2 个答案:

答案 0 :(得分:1)

text := @LeftBack(@Text(myDateField; "D0T0Z2"); " ");
date := @TextToTime(@Left(text; " "));
time := @TextToTime(@Right(text; " "));
result := @TimeMerge(date; time; "Z=-8");

答案 1 :(得分:0)

FIELD whatever:= @ToTime(“4/15/2020 5:46:13 AM ZE8”);