即时自定义 SSRS 报告
我们需要以简单的方式表示 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.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置列的表达式以根据所选参数在不同字段中进行选择。例如,第二个单元格的值的表达式可能类似于
(上面的代码未经过测试,但希望足够接近以便为您提供想法。)
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
(Above code not tested, but hopefully close enough to give you the idea.)