SQL 2008 报告服务问题 - tablix visable

发布于 2024-07-30 10:21:32 字数 330 浏览 5 评论 0原文

我有一份报告,上面有两个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可遇━不可求 2024-08-06 10:21:32

根据FIRST文档,第二个参数代表一个组。 您是否定义了“ClassificationNarrowed”组?

According to the FIRST documentation, the second parameter represents a group. Do you have a "ClassificationNarrowed" group defined?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文