开发者

Customize SSRS report on the fly

开发者 https://www.devze.com 2023-04-05 15:11 出处:网络
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.

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 whi开发者_如何学JAVAch 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.

Customize SSRS report on the fly

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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号