SSRS中的多值参数-显示在报告中
我刚刚开始使用 SSRS,所以这个问题可能看起来很愚蠢。
不管怎样,现在我试图避免多值参数,因为我希望我的参数能够为 NULL。因此,我只需将一个以逗号分隔的 ID 值字符串传递给我的存储过程,一切就正常了。 我遇到的问题是我想在报告中显示实际值,而不是 ID,以便用户可以看到使用了什么过滤器。 如果这是一个多值参数,我会简单地使用 JOIN 函数,但现在我没有主意了,非常感谢一些帮助。谢谢!
I just started working with SSRS, so this question might seem silly.
Anyway, for now I'm trying to avoid multi-valued parameters, because I want my parameters to be able to be NULL. So I'm just passing a comma-separated string of ID values to my stored procedure, and everything works.
The problem I encountered is that I want to display the actual values, not IDs, in the report, so that users can see, what filter was used.
If that were a multi-valued parameter, I would simply use JOIN function, but now I am out of ideas and would really appreciate some help. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将多值参数设置为 null。您可以在报告中使用 xxxx.label 而不是 xxxx.value。
You can have a multivalue parameter as null. You can use xxxx.label rather than xxxx.value in the report.