SSRS 使用“跳转报告”; 钻取以忽略矩阵中小计的表达式

发布于 2024-07-26 02:35:18 字数 78 浏览 3 评论 0原文

我在矩阵的值单元格上有一个钻取链接,以显示详细的报告。 但是,当我运行报告时,用户可以使用该值的小计进行钻取。 如何仅禁用小计的点击导航。

I have a drill through link on the value cell of a matrix to show a detailed report. However when I run the report, users are able to drill through using the sub total of this value. How do I disable the click through navigation for the subtotal only.

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

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

发布评论

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

评论(1

荆棘i 2024-08-02 02:35:18

使用“跳转到报告”表达式(在“导航”选项卡上的单元格属性中),在小计中返回 False。

例如,假设一个行组和一个列组分别称为matrix1_Row1和matrix1_Col1,“ReportName”是我们要钻取的报表的名称。

使用 inscope 函数检查您是否不在小计中。 即,如果 Row1 和 Col1 都在范围内,那么这不能是小计。

=iif(inscope("matrix1_Row1") AND inscope("matrix1_Col1"),"ReportName",false)

Using the “Jump to report” expression (on the Navigation tab, in properties of the cell), return False when in the subtotal.

For example assume one row group and one column group called matrix1_Row1 and matrix1_Col1 respectively and “ReportName” is the name of the report we want to drill to.

Use the inscope function to check that you are not in a subtotal. i.e if both Row1 and Col1 are inscope then this cant be a subtotal.

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