如何在Crystal Report中使用数据时条件

时间:2018-03-29 09:43:31

标签: crystal-reports crystal-reports-2008 crystal-reports-2010

如何在水晶报告2018中使用以下条件

if {@IntParIssDate}>='03/25/2018' then
IntPartTax = ({@totintpartcost} * 5 /100 )

如果IntParIssDate> = '03 / 25/2018',则IntPartTax将为totintpartcost的5%

如何计算。

Thaks

1 个答案:

答案 0 :(得分:1)

这应该有效:

NumberVar IntPartTax;

if {@IntParIssDate}>=date(2018,3,25) then
   IntPartTax := ({@totintpartcost} * 5/100)