New to SSRS here. I have a report I'm writing to display all of the sales lines where a line is found containing a list of specific items.
The parameter @Items
gets its data from a dataset which is pretty simple. The issue is, we have 100,000 items. Users are usually only searching for a few items at a time.
This currently gives them a drop down with all 100k items. They have to scroll up/down and check the box for each item.
select ITEMID,
ItemId + ' - ' + ITEMNAME as 'ItemId_ItemName'
from INVENTTABLE
order by ITEMID asc
In Excel, if you filter by a field, you can start typing the item, then check the box, clear the filter, type a different item, etc. and then you have a 100k list with the three or so items checked.
Any idea how I can accomplish this?