Multiple value selection and optional filter in SSRS 2005 report

非 Y 不嫁゛ 提交于 2019-12-02 09:51:12

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.

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

Hope this helps!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!