Reputation:
Is it possible to set the report parameter's width manually in SSRS? I could see that the parameters are given the width by SSRS itself, and the XML coding does not have any attributes mentioning its width. I'm wondering is there anything that we can add in to
</ReportParameter> </ReportParameter>
to set the report parameter's width?
Upvotes: 0
Views: 1624
Reputation: 11
Simple solution, write your query with UNION
, for example:
SELECT empID, empName from Employees
UNION
Select NULL AS empID, 'ALL' as empName
This will solve the small width problem
Upvotes: 1