Display Parameter(Multi-value) in Report

后端 未结 4 1442
终归单人心
终归单人心 2021-01-31 01:24

Can anyone tell me how to display all the selected value of my multi value parameter in SSRS report. When giving parameter.value option it gives error.

4条回答
  •  独厮守ぢ
    2021-01-31 01:49

    You can use the "Join" function to create a single string out of the array of labels, like this:

    =Join(Parameters!Product.Label, ",")
    

提交回复
热议问题