【发布时间】:2014-04-24 22:58:51
【问题描述】:
如果 RDLC 报告表达式中不为空,如何将两个值相乘
我在用这个
=SUM(Fields!Quantity.Value*Fields!ExclusivePrice.Value)
更改为这个,但如果值为空,仍然会出错
=Sum((IIf(Fields!Quantity.Value 什么都没有, 0,Fields!Quantity.Value))*(IIf(Fields!ExclusivePrice.Value 什么都没有, 0,Fields!ExclusivePrice.Value)))
提前感谢您的帮助。
【问题讨论】:
标签: rdlc