SSRS 2005 在下拉参数中连接值
我有一个数据集,我想将其用作 SSRS 中图表的参数。我试图解决的难题如下。
我的数据集有 4 列,在下拉参数中我只能指定标签和值。我无法指定两列作为标签和两列作为值。
有谁知道如何连接下拉列表中的值?
我不想在生成数据集的 sql 查询中连接这些值。
I have a dataset which I want to use as a parameter for my chart in SSRS. The puzzle that I am trying to solve is as below.
My DataSet has 4 columns and in the Dropdown parameter I can only specify label and value. I am not able to specify two columns as Label and two columns as value.
Does anyone know how to concat the values in the dropdown?
I don't want to concat these values in my sql query generating the dataset.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
=Fields!Col1.Value & “-”&字段!Col2.Value 和“-”&
使其成为表达式
如果这是不可能的,则只需在数据集中创建一个计算字段(即连接),然后使用它作为值。
(要创建计算字段,请转到数据集窗口 CTRL + ALT + D,右键单击数据集“添加计算字段”)。
=Fields!Col1.Value & " - " & Fields!Col2.Value & " - " &
Make this an expression
If this is not possible, then simply create a calculated field in the dataset which is the concat, then use this as the value.
(to create a calculated field, go to the datasets window CTRL + ALT + D, right click on your dataset 'add calc field').