我的LN医生里有个日期/时间域。日期为"11/09/2014 11:04:25 ZE4“。我想在11/09/2013 11:04:25 ZE8上做同样的补丁。如何通过公式语言实现??
发布于 2014-09-11 14:29:48
输入任何:= @ToTime("4/15/2020 5:46:13 AM ZE8");
发布于 2014-09-16 20:00:28
text := @LeftBack(@Text(myDateField; "D0T0Z2"); " ");
date := @TextToTime(@Left(text; " "));
time := @TextToTime(@Right(text; " "));
result := @TimeMerge(date; time; "Z=-8");
https://stackoverflow.com/questions/25781796
复制相似问题