SSRS wild card search functionality
I'm not clear on your requirements, but this post may help you: http://dataqueen.unlimitedviz.com/2011/06/how-to-default-to-all-in-an-ssrs-multi-select-parameter/ John
June 28th, 2011 9:43am

Can somebody tell me how to implement wild card search functionality in SSRS Reports..I have built a simple report and need to provide this functionality..please if somebody can point me in direction of some tutorial or something it will help a lot..Thanks a lot in advance
Free Windows Admin Tool Kit Click here and download it now
June 28th, 2011 11:20am

Thank you guys for your input..It has given me the proper direction :)
June 28th, 2011 12:37pm

In your sql where clause do one of the following Where <field> like @parameter_value + '%' <--- Starts with Where <field> like '%' + @parameter_value <--- Ends with Where <field> like '%' + @parameter_value + '%' <--- Contains
Free Windows Admin Tool Kit Click here and download it now
June 28th, 2011 12:57pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics