SSRS 中的条件操作
我希望我的文本框仅在条件为真时才执行操作,否则不执行任何操作。这就是我当前转到另一个报告的操作表达式:
=IIf(Fields!MyTextbox.Value = "0", "Report2","")
这不会产生我想要的结果。无论条件结果如何,它都会为文本框提供一个操作。是否有“无操作”或“取消操作”值?
I want my textbox to have an action ONLY if the condition is true, otherwise no action. This is what I have as my current action expression for going to another report:
=IIf(Fields!MyTextbox.Value = "0", "Report2","")
This does not produce my desired result. It gives the textbox an action regardless of the condition result. Is there a 'No Action' or 'Cancel Action' value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VB 中的 null 关键字是
Nothing
:The null keyword in VB is
Nothing
: