SSRS 使用“跳转报告”; 钻取以忽略矩阵中小计的表达式
我在矩阵的值单元格上有一个钻取链接,以显示详细的报告。 但是,当我运行报告时,用户可以使用该值的小计进行钻取。 如何仅禁用小计的点击导航。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用“跳转到报告”表达式(在“导航”选项卡上的单元格属性中),在小计中返回 False。
例如,假设一个行组和一个列组分别称为matrix1_Row1和matrix1_Col1,“ReportName”是我们要钻取的报表的名称。
使用 inscope 函数检查您是否不在小计中。 即,如果 Row1 和 Col1 都在范围内,那么这不能是小计。
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.