即时自定义 SSRS 报告

发布于 2024-12-04 20:42:12 字数 423 浏览 3 评论 0原文

我们需要以简单的方式表示 SSRS 报告上的数据。 即该报告的 sql 查询将如下所示。

从日期介于 date1 和 date2 之间的表中选择 col1、col2、....col8。
因此,用户将通过使用一些参数(例如:date1 和 date2)从 Web 应用程序中选择该报告来运行此报告 但我在这里面临的关键问题是,在界面上,用户可以选择选择要定位的列的顺序,如下图所示。 在此处输入图像描述

在图像中您将看到自定义格式有 col1,col4,col8,col6,col5,col3,第 7 列,第 2 列。

请帮助我如何创建 RDL 文件来组织此类需求。预先感谢您了解正确的要求并按要求生成结果。

We have a requirement to represent the data on SSRS report in a simple manner.
i.e. the sql query for this report will look like this.

Select col1, col2,....col8 from Table where Date between date1 and date2.
So the user will run this report by selecting it from the web application with some parameters (eg: date1 and date2)
But the critical thing which i am facing here is that on the interface user has the option to select the order of the columns to position as shown in the image below.
enter image description here

In the image you will see the customized format has col1,col4,col8,col6,col5,col3,col7,col2.

Please help me how to create an RDL file to organize this kind of requirement. Thank you in advance in understand the correct requirement and producing the result as requested.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蘸点软妹酱 2024-12-11 20:42:12

设置列的表达式以根据所选参数在不同字段中进行选择。例如,第二个单元格的值的表达式可能类似于

=IIF(Parameters!MyColumnParameter.Value = "Choice1", Fields!Col2.Value, Fields!Col4.Value)

(上面的代码未经过测试,但希望足够接近以便为您提供想法。)

Set the expression for the columns to choose among the different fields depending on the selected parameter. For example, the expression for the value of the second cell might be similar to

=IIF(Parameters!MyColumnParameter.Value = "Choice1", Fields!Col2.Value, Fields!Col4.Value)

(Above code not tested, but hopefully close enough to give you the idea.)

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