如何在 crystal 报告的公式字段中进行条件求和?
How to do conditional sum in formula fields on crystal report?
我正在尝试添加零件数量列表。我只想添加 ID 为 aa 的金额。我正在使用以下公式:
shared numbervar aTotal;
if lcase({ID}) = 'aa' then
aTotal := aTotal + CDBL({Amount});
但是它把所有数据加起来了。帮我解决这个问题
试试这个:
Create a formula `@Compute`
if lcase({ID}) = 'aa' then
CDBL({Amount});
else 0
现在在页脚中求和公式 compute
我正在尝试添加零件数量列表。我只想添加 ID 为 aa 的金额。我正在使用以下公式:
shared numbervar aTotal;
if lcase({ID}) = 'aa' then
aTotal := aTotal + CDBL({Amount});
但是它把所有数据加起来了。帮我解决这个问题
试试这个:
Create a formula `@Compute`
if lcase({ID}) = 'aa' then
CDBL({Amount});
else 0
现在在页脚中求和公式 compute