如何在 ssrs 2008 R2 中的报告端应用过滤器

发布于 2024-12-11 02:08:06 字数 223 浏览 0 评论 0原文

我在 tablix 中有一个表达式,用于我的报告列“已发货案例”之一,如下所示 =IIF(Fields!Current_Product.Value= "匹配"," ",Sum(Fields!Cases_Shipped.Value)) 这会添加相同分销商项目代码的箱装运值。 在这个语句之后,我想在报告的这一列上应用过滤器。有一个文本框参数,用户在其中输入数字(如 10),报告上的列将通过该值进行过滤。

我该怎么做?

I have a expression inside a tablix for one of my report column Cases Shipped like this
=IIF(Fields!Current_Product.Value= "Match"," ",Sum(Fields!Cases_Shipped.Value))
This add the cases shipped value of same ditributor item code.
After this statement i want to apply a filter on this column on the report .there is a textbox parameter in which a user enter the number like 10 and the column on report get filtered through this value.

How can i do this??

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

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

发布评论

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

评论(1

余生再见 2024-12-18 02:08:06

听起来您正在寻找更改列组可见性。 (您正在使用列组,对吗?)如果是这样,右键单击列组,您可以通过公式设置可见性。该公式可以包含参数。

=IIF(sum(Fields!Cases_Shipped.Value ) >= Parameters!CasesShipped.Value and (Fields!Stocked.Value = "" OR Fields!Stocked.Value = "Yes" OR Fields!Stocked.Value = "No"), false, true)

Sounds like you are looking to change the Column Group visibility. (You are using column groups, right?) If so, right click on a column group and you can set the visibility by formula. The formula can incorporate a Parameter.

=IIF(sum(Fields!Cases_Shipped.Value ) >= Parameters!CasesShipped.Value and (Fields!Stocked.Value = "" OR Fields!Stocked.Value = "Yes" OR Fields!Stocked.Value = "No"), false, true)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文