SSRS BIDS表达式根据传递的参数显示/隐藏图像

发布于 2025-01-06 14:51:32 字数 180 浏览 2 评论 0原文

如果选择某个字段,是否可以提供可用的图像,在本例中,参数为@employeename,我只希望在某个值为 true 时显示已放置在报表上的图像。

语法是什么,我关心的字段是employeename

在此处输入图像描述

Is it possible to have an image available if a certain field is selected, in this case the parameter is @employeename, I only want the image that has been placed on the report to display if a certain value is true.

What is the syntax, field i am concerned with is employeename

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

拔了角的鹿 2025-01-13 14:51:32

表达式类似于:

=IIf(Fields!employeename.Value = "Something", True, False)

您可以将 "Something" 设为硬编码值或其他参数。要记住的关键一点是您必须访问 .Value 属性。

The expression would be something like:

=IIf(Fields!employeename.Value = "Something", True, False)

You can have "Something" be a hard-coded value or another parameter. The key thing to remember is you have to access the .Value property.

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