水晶报告“失踪”

时间:2017-01-31 07:31:18

标签: crystal-reports

我试图运行已创建且有效的报告。但是,当我尝试使用' Formula Workshop'弹出错误时屏幕,它说")缺少"。这是显示的公式:

if({a.sched_firm_qty}+{a.sched_excess_qty} != 0)
then
(({a.actual_firm_qty}+{a.actual_excess_qty}) / ({a.sched_firm_qty}+{a.sched_excess_qty}))-1
else
-1

请帮忙

1 个答案:

答案 0 :(得分:4)

您的公式应该是

if(({a.sched_firm_qty}+{a.sched_excess_qty}) <> 0)
then
(({a.actual_firm_qty}+{a.actual_excess_qty}) / ({a.sched_firm_qty}+{a.sched_excess_qty}))-1
else
-1

我为第一个摘要添加了一个额外的括号,并替换了匹配的运算符。 <>与CR中的!=相同。希望它有所帮助