SSRS 中的 iif 具有多个值

发布于 2024-10-21 00:24:58 字数 205 浏览 6 评论 0原文

我的报告中有一个字段,它依赖于数据集中的另外 3 个字段。这 3 个字段是 APAC、EMEA 和 LATAM(区域)。现在,相应项目的这些字段中有“是”和“否”。我必须从每个项目中收集带有“是”的字段,并将所有这些区域显示为单个字段中的“受影响的区域”。有没有办法在 SSRS 中做到这一点。当我使用 iif 时,我只能显示一个区域。假设如果 2 个字段都有“是”,我就无法同时显示这两个区域。

I have a field in the report which depends on 3 more fields in the DataSet. The 3 fields are APAC, EMEA and LATAM (Regions). Now There is a Yes and a No in those fields for corresponding Projects. I have to collect the fields with a Yes from each project and display all those regions as Impacted regions in a single field.. Is there a way to do it in SSRS. When I'm using iif I'm only able to display only one region.. supposed if 2 fields have yes, I'm not able to display both..

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

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

发布评论

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

评论(3

但可醉心 2024-10-28 00:24:58

连接结果怎么样?

=iif( Fields!APAC.value = "yes", "APAC ", "") & iif( Fields!EMEA.value = "yes", "EMEA ", "") & iif( Fields!LATAM.value = "yes", "LATAM", "")

What about concatenating the results?

=iif( Fields!APAC.value = "yes", "APAC ", "") & iif( Fields!EMEA.value = "yes", "EMEA ", "") & iif( Fields!LATAM.value = "yes", "LATAM", "")
悲喜皆因你 2024-10-28 00:24:58

您可以使用 SQL 来解决您的问题 - 更改查询以返回计算的额外字段吗?

Can you use SQL to solve your issue - change the query to return an extra field which is calculated?

断肠人 2024-10-28 00:24:58

你能尝试一下 switch 语句吗?

http://weblogs.sqlteam.com/joew/archive/2008 /08/20/60693.aspx

或者...你能说一下你的参数是什么数据类型以及它们是多选参数还是单选参数?

Can you try a switch statement?

http://weblogs.sqlteam.com/joew/archive/2008/08/20/60693.aspx

Or... can you say what data type your parameters are and if they are multi-select or single select parameters?

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