报表表达式编辑器中的 VBScript,过滤掉某些值
我有一份报告需要将空值替换为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经多次使用过类似的东西并且效果很好。尝试如下:
如果这不起作用,您可以查看是否有任何错误或警告。
I have used similar things many time and it works fine. Try it like this:
If this does not work can you see if there are any errors or warnings.