I have created an SSRS report that renders a table from my DB. I have created a multi-value text parameter. I know I can use the parameter three ways:
- use it in the dataset query (
WHERE col1 IN (@parm)
) - use it in the dataset filter (
Expression = col1
,Operator = In
,Value = @parm
) - use it in the Tablix filter
The issue is that when I do this, on the initial page/report load there are no rows rendered and I have to enter something in the mult-value text parameter and re-run the report.
How can I get it to show all rows/records when the the parameter is empty and then only the matching rows otherwise.