如何在水晶报告的公式字段中进行条件求和?

时间:2015-02-21 09:49:46

标签: c# asp.net crystal-reports

我正在尝试添加部分金额列表。我想只添加ID为aa的金额。我使用下面的formuls:

shared numbervar aTotal;
if lcase({ID}) = 'aa' then
aTotal := aTotal + CDBL({Amount});

但它加起来所有数据。帮助我

1 个答案:

答案 0 :(得分:0)

试试这个:

Create a formula `@Compute`

if lcase({ID}) = 'aa' then
CDBL({Amount});
else 0

现在在页脚中取公式compute

的总和