如何在水晶报告2018中使用以下条件
if {@IntParIssDate}>='03/25/2018' then
IntPartTax = ({@totintpartcost} * 5 /100 )
如果IntParIssDate> = '03 / 25/2018',则IntPartTax将为totintpartcost的5%
如何计算。
Thaks
答案 0 :(得分:1)
这应该有效:
NumberVar IntPartTax;
if {@IntParIssDate}>=date(2018,3,25) then
IntPartTax := ({@totintpartcost} * 5/100)