all groups > sql server reporting services > may 2007 >
You're in the

sql server reporting services

group:

Select All for the Parameter when generating a report


Select All for the Parameter when generating a report Ryan McBee
5/2/2007 8:59:01 AM
sql server reporting services:
I entered a Parameter drop down for my report, but I do not have the option
to select all when I go to generate my report. Any ideas on how to get the
RE: Select All for the Parameter when generating a report William
5/2/2007 9:32:01 AM
If you are using the 2005 version, I believe that there is an all option
provided.

Pre 2005, which I use, you need to supply the "ALL" value to your drop down
data source. If the drop down comes from a sql data source add a union for
the value. IE:

SELECT user_id FROM Tbl_Name
UNION
SELECT 'ALL'

Then you must test in your selection criteria as

WHERE ...
AND (data.user = @UserParam or @UserParam = 'ALL')



[quoted text, click to view]
RE: Select All for the Parameter when generating a report Ryan Mcbee
5/2/2007 10:07:00 AM
I am using 2005, any ideas of where the select all option is?
Thanks,
Ryan

[quoted text, click to view]
RE: Select All for the Parameter when generating a report Michael C
5/2/2007 10:59:01 AM

In one of the service packs for SQL 2005 I believe the 'Select All' for
multi-value parameters was removed (security reasons). They have since fixed
it, but I believe it requires a hot-fix to access that functionality again.

Try this link for: http://support.microsoft.com/kb/918222


[quoted text, click to view]
AddThis Social Bookmark Button