SSRS 2005 在下拉参数中连接值

发布于 2024-08-31 18:25:47 字数 157 浏览 3 评论 0原文

我有一个数据集,我想将其用作 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唔猫 2024-09-07 18:25:47

=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').

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文