报表表达式编辑器中的 VBScript,过滤掉某些值

发布于 2024-09-11 15:54:59 字数 207 浏览 13 评论 0原文

我有一份报告需要将空值替换为 N/A。它适用于 x 行数,直到达到空值为止,然后需要显示的其余数据就会消失。

这是我的表达

=iif(Fields!PastBaseline.Value is nothing, "N/A", Round(Fields!PastBaseline.Value))

有人知道我做错了什么吗?

I have a report that need null values replaced with N/A. It works for x amount of rows until the null value is hit then the rest of the data needing to be displayed just goes away.

Here is my expression

=iif(Fields!PastBaseline.Value is nothing, "N/A", Round(Fields!PastBaseline.Value))

Anyone know what I am doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你是年少的欢喜 2024-09-18 15:54:59

我已经多次使用过类似的东西并且效果很好。尝试如下:

=iif( IsNothing( Fields!PastBaseline.Value ), "N/A", Round(Fields!PastBaseline.Value))

如果这不起作用,您可以查看是否有任何错误或警告。

I have used similar things many time and it works fine. Try it like this:

=iif( IsNothing( Fields!PastBaseline.Value ), "N/A", Round(Fields!PastBaseline.Value))

If this does not work can you see if there are any errors or warnings.

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