Hi There,
I am working in SSRS 2008. I have a parameter to pull 'All' of a set of records or it will pull one. What it won't do is allow someone to select two or more. It is either one or All. I found the standard 'Select All' was killing my report -- like 5 minutes. This 'All' workaround runs in less than 10 seconds. BUT I cannot select two or more. Any ideas on how I can set this parameter up to select two or more? Thanks!
--Main Dataset 'WHERE' clause:
WHERE (ai.entered_datetime BETWEEN @StartDate AND @FinishDate)
AND (ai.applicant_status IN(@Status) or @Status ='All')
--Parameter query:
SELECT DISTINCT status_id
, status_label
FROM applicant_status
UNION
SELECT 'All', '_All'
ORDER BY status_label
I am working in SSRS 2008. I have a parameter to pull 'All' of a set of records or it will pull one. What it won't do is allow someone to select two or more. It is either one or All. I found the standard 'Select All' was killing my report -- like 5 minutes. This 'All' workaround runs in less than 10 seconds. BUT I cannot select two or more. Any ideas on how I can set this parameter up to select two or more? Thanks!
--Main Dataset 'WHERE' clause:
WHERE (ai.entered_datetime BETWEEN @StartDate AND @FinishDate)
AND (ai.applicant_status IN(@Status) or @Status ='All')
--Parameter query:
SELECT DISTINCT status_id
, status_label
FROM applicant_status
UNION
SELECT 'All', '_All'
ORDER BY status_label