0

我目前正在编写每日安全报告。如果满足某个条件,我想写一个公式来计算无伤天数。如果伤害类型字段中的值为“损失时间伤害”,则应从日期字段中获取日期,并将当前日期和时间之间的差异计算为一个数字。

4

2 回答 2

1
If Not(Isnull({table.injuryType})) And {table.injuryType}="Lost Time Injury" Then
  CurrentDate - {table.dateField}
于 2013-08-30T02:14:35.297 回答
-1

使用报告的月份参数将组添加到报告中。并写一个这样的公式并将其添加到您的标题中

if(certain check about injuries != null) then
(
    no injuries
)
else
(
    injuries++;
)

injuries;

希望能帮助到你

于 2013-08-29T09:42:39.393 回答