Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Reporting services 我们可以在SSRS中手动设置参数宽度吗?_Reporting Services - Fatal编程技术网

Reporting services 我们可以在SSRS中手动设置参数宽度吗?

Reporting services 我们可以在SSRS中手动设置参数宽度吗?,reporting-services,Reporting Services,是否可以在SSRS中手动设置报告参数的宽度?我可以看到,参数的宽度是由SSRS本身给定的,XML编码没有任何提及其宽度的属性。我想知道我们还有什么可以补充的吗 </ReportParameter> </ReportParameter> 要设置报表参数的宽度?据我所知,没有一个。简单的解决方案,请使用UNION编写查询,例如: SELECT empID, empName from Employees UNION Select NULL AS empID, 'ALL'

是否可以在SSRS中手动设置报告参数的宽度?我可以看到,参数的宽度是由SSRS本身给定的,XML编码没有任何提及其宽度的属性。我想知道我们还有什么可以补充的吗

</ReportParameter> </ReportParameter>


要设置报表参数的宽度?

据我所知,没有一个。

简单的解决方案,请使用
UNION
编写查询,例如:

SELECT empID, empName from Employees
UNION
Select NULL AS empID, 'ALL' as empName

这将解决小宽度问题

这不是我在SSRS 2005中看到的,我将在开始工作时检查。