如果我使用 IIF 语句,则字段值不会打印在 SQL 报告中

发布于 2024-12-11 21:13:36 字数 211 浏览 0 评论 0原文

我设计了具有多个数据集的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温柔戏命师 2024-12-18 21:13:36

如果 Tablix(表、列表或矩阵)连接到不返回行的数据集,则 Tablix 将不会显示任何数据行(详细信息或其他组行)。

如果您希望 Tablix 在数据集返回时显示行没有,有两个简单的答案:

  1. 更改数据集以始终返回一行:通常带有并集。

  2. 向 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:

  1. Alter your dataset to always return a row: usually with a union.

  2. 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.

脱离于你 2024-12-18 21:13:36

尝试使用 CountRows("DataSet6") 代替

Try using CountRows("DataSet6") instead

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文