带图像的SSRS报告

时间:2015-10-26 14:00:56

标签: reporting-services

我有一个带有外部图像框的报告,我在下面给出了表达式,

代码

=Iif(isNothing(First(Fields!FooterLocation.Value, "DataSet2")),"", "file://"&First(Fields!FooterLocation.Value, "DataSet2"))

问题在于,当给定路径中没有图像或FooterLocation.Value为NULL或空时,整个报表永远不会加载。无论上述情况如何,它都应该显示报告,但如果找不到NULL或者路径为空,则显示空白图像。

请帮我找到解决方案。

1 个答案:

答案 0 :(得分:0)

为什么不尝试添加空白图像,并在字段为空或空时显示该图像?这样您的报告将始终显示。

=Iif(isNothing(First(Fields!FooterLocation.Value, "DataSet2")),"<yourEmptyImageHere>", "file://"&First(Fields!FooterLocation.Value, "DataSet2"))