SQL 2008 - 使用父聚合进行 MDX 叶级计算
创建计算度量来计算自定义方差公式的最佳方法是什么(我无法使用默认的方差函数,因为它不适应自定义权重)。因此,叶级别公式将具有 2 个组件,一个组件将是叶级别的事实,另一个组件将是层次结构中各个级别的父聚合。所以公式如下:(需要在每个叶级别计算)
(ab)^2
其中 a 是叶级事实 [Measure].[Score] b 是父级别聚合([Dim].[Level].[All]、[Measure].[MeanScore])
What is the optimal way to create a calculated measure to compute a custom variance formula (I cannot use the default Variance function because it does not accommodate custom weights). So the leaf level formula will have 2 components one component will be a fact at the leaf level and the other component will be a parent aggregate at various levels in the hierarchy. So the formula is as follows: (Need this computed at each leaf level)
(a-b)^2
Where
a is a leaf level fact [Measure].[Score]
b is a parent level aggregate ([Dim].[Level].[All], [Measure].[MeanScore])
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够通过将 CELL CALCULATION 与 CalculationPassValue 结合使用来解决这个问题:
I was able to address this by using CELL CALCULATION in conjunction with CalculationPassValue: