如何获取SSRS文本框中多值参数的值
当选择多值参数时如何获取文本框中的值?
例如,
我的下拉框选择全部、成功、失败,
我想在文本框中显示上述值..所以我选择了文本框的值作为参数!value.Value(0)
如果我们仅选择成功或仅选择,它就可以工作下拉框中失败,但是当我们选择两者时,即选择所有文本框值仅显示成功而不是成功、失败..
您能帮我解决这个问题吗?
when the multivalued parameter is selcted how to get the valu in textbox?
eg
my dropdown box is having select all, success,failure
i want to display the above values in textbox..so i have selected the value for text box as Parameters!value.Value(0)
it works if we select only succes or only failure in the drop down box but when we select both i.e, select all the text box value is displaying just success instead of success,failure..
can you please help me with this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过使用 join 得到了这个
Join(参数!value.Value, ", ")
i got this by using join
Join(Parameters!value.Value, ", ")