在 SSRS 查询字符串中传递多值参数的值
我有两个使用 SSRS 2005 构建的报告。第一个报告设置为在单击特定字段时导航到第二个报告。 第二个报告上有一个多值参数。调用此报告时,我需要在“跳转到报告”字符串中传递此参数的多个值。有没有办法传递多个值?我尝试过 Field.Value 但这不适用于多值,它需要 Field.Value(0)。或者您可以传递一个参数来导致选择“全选”值吗?
I have two reports built using SSRS 2005. The first report is set to navigate to the second when a specific field is clicked.
There is a multi-value parameter on the second report. I need to pass multiple values for this parameter in the "Jump to Report" string when calling this report. Is there a way to pass multiple values? I have tried Field.Value but that doesn't work for multivalue, it wants Field.Value(0). Or can you pass a parameter that will cause the Select All value to be selected?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了。看起来传入的参数之一是 Field.Value(0) 而不是 Field.Value。那真是把事情搞砸了。
I figured it out. Looks like one of the parameters being passed in was Field.Value(0) instead of Field.Value. That was messing things up.