SQL 2008 报告服务问题 - tablix visable
我有一份报告,上面有两个 tablix。 我正在尝试使用表达式控制 tablix 的可见性。 当我硬编码布尔值 0 或 1 时,可见性起作用。 当我输入类似以下内容时,
=cbool(iif(First(Fields!bGeneralQuestionDisplayed.Value, "ClassificationNarrowed")=1 ,1,0))
它不起作用。 我有探查器来验证查询是否正在运行并返回结果。 我还在表单上创建了一个文本字段,输入相同的表达式。结果是 1 或 0。
任何人都知道可能导致问题的原因。 谢谢 香农
I have a report that has two tablix on it. I'm trying to control the visibility of the tablix using an expression. When i hard code in a boolean value of 0 or 1 the visibilty works. When i put in something like the following
=cbool(iif(First(Fields!bGeneralQuestionDisplayed.Value, "ClassificationNarrowed")=1 ,1,0))
it does not work. I've profiler to verify that the query is running and returning the results. I've also created a text field on the form rumming the same expression.. the result is a 1 or a 0.
anyone have any idea as to what might be causing the issue.
thanks
shannon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据FIRST文档,第二个参数代表一个组。 您是否定义了“ClassificationNarrowed”组?
According to the FIRST documentation, the second parameter represents a group. Do you have a "ClassificationNarrowed" group defined?