如果我使用 IIF 语句,则字段值不会打印在 SQL 报告中
我设计了具有多个数据集的 SQL 报告。在任何一个条件下,数据集都将返回空。如果数据集为空,我需要打印 0。我已经写了像下面这样的代码。
=iif(Rownumber("DataSet6")=0,"0",Fields!RecyclePercent.Value)
但它不打印 O。
请帮助我解决这个问题。
谢谢
I have design the SQL Reports with multiple DataSets. On that any one of the condition the DataSet will return empty. If the DataSet is empty i need to print 0 for that. I have wrote the code like blow.
=iif(Rownumber("DataSet6")=0,"0",Fields!RecyclePercent.Value)
But it is not print the O.
Pls help me to resolve this problem.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 Tablix(表、列表或矩阵)连接到不返回行的数据集,则 Tablix 将不会显示任何数据行(详细信息或其他组行)。
如果您希望 Tablix 在数据集返回时显示行没有,有两个简单的答案:
更改数据集以始终返回一行:通常带有并集。
向 Tablix 标头添加一个假数据行,但将此行的可见性设置为表达式,例如
=CountRows("DataSet6") <> 0 。当数据集返回真实行时,这将隐藏该行。
If a tablix (table, list or matrix) is connected to a dataset that returns no rows, then the tablix will not show any data rows (detail or other group rows.)
If you would like the tablix to show rows when the dataset returns none, there are two easy answers:
Alter your dataset to always return a row: usually with a union.
Add a fake data row to your tablix header, but set the visibility of this row to an expression such as
=CountRows("DataSet6") <> 0
. This will hide the row when there are real rows returned by the dataset.尝试使用
CountRows("DataSet6")
代替Try using
CountRows("DataSet6")
instead