dianemarie
Instructor
Hello, I'm working with SSRS 2005. I have many reports with multi-value parameters, where the user can select one or more clients (for example) from the drop-down. I allow the user to select in one of two ways. 1. The user enters the Client ID numbers separated by commas. I do this in the Query: ClientID IN (SELECT ClientID FROM fn_Split(@ClientNumber, ',')) This is fine for those people who don't mind keeping track of their client numbers, or running a report to get them. Which brings me to method 2: I do a separate dataset listing the client numbers and client names, use it in a multivalue parameter which they can check off. The problem with this method is our client list is massive, and they don't like scrolling through the very long list. The question is this. Is there a way to select client names by typing them until it shows up in the list? I apologize if this isn't clear. Thanks!