Multiple value selection and optional filter in SSRS 2005 report

后端 未结 1 1505
北恋
北恋 2021-01-27 07:29

I had done a fair share of research before asking this here. Firstly, i would like to create a drop-down filter @accessVar with the ability to select multiple values. It would b

相关标签:
1条回答
  • 2021-01-27 07:38

    You can do this using Filter at the Data Set properties. Before that you need to remove the (ACCESS_LOCATION_X LIKE @accessVar) from your data set query.

    set the expression as follows[Modify your parameter name].

    =ACCESS_LOCATION_X Like "*"+Parameters!param.Value+"*"
    

    Then configure the Dataset properties Filter tab as follows.

    enter image description here

    After that you can run your report. Following screenshot searches for "en" word in the report data set and returns the result set.

    enter image description here

    Hope this helps!

    0 讨论(0)
提交回复
热议问题