|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Today @ 3:26 AM
Points: 156,
Visits: 567
|
|
Hi geniuses! It is possible to have the autocomplete features in a SSRS report parameter? Thanks in advance!
Best Regards!
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Wednesday, May 01, 2013 2:42 PM
Points: 25,
Visits: 126
|
|
| what is meant by auto complete is it you need default values to all the parameters. Than in that case you can set up default values to all the parameters.
|
|
|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: 2 days ago @ 12:34 AM
Points: 408,
Visits: 686
|
|
Not directly in SSRS. If you create your own ASP.NET page with the report control you can use a text box with AJAX or similar technology to achieve this effect.
By itself, SSRS won't do it, and it's not really meant to be a search engine.
The best way to help your users is to use the "available values" of a parameter. You can provide a dataset to the available values which will populate the parameter drop-down list. It's best to keep these lists short for usability reasons.
Another option is that you take a free-text parameter and work it into a query somewhat like this
where databasecolumn like '%' + parameter + '%' But I don't recommend that last option. It's too open ended and while it looks helpful to your users it's really not. Providing them a drop-down list is far better.
|
|
|
|