Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Searchable drop-down list

Status
Not open for further replies.

bustercoder

Programmer
Mar 13, 2007
96
Hello,

I have a drop-down list being used to pull in input parameter for the report, but the list is VERY long, into the hundreds of records. Is there a way in SRS 2005 to make the list searchable, so the user can drill down to get closer to what they want by typing in the first two or three characters of the value?

Thanks,
Buster
 
One thought off the top of my head:

Set up a pair of cascading parameters. The first parameter would allow the user to type three characters. The second parameter would be the query that generates your list, but it would now accept the first parameter and include a WHERE clause like:
Code:
WHERE ListValue like @Param1+'%'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top