如何使用MDX计算最近行平均值?

发布于 2024-12-05 17:34:37 字数 304 浏览 1 评论 0原文

我的数据示例:

id  value_a 
1   1.0
2   2.0
3   3.0
4   4.0

我想要的是

id / value_a / recent_n_avg

1    1.0     0.33

2    2.0     1.00

3    3.0     2.00

4    4.0     3.00

recent_n_avg是最近n行的平均值(示例中n=3)。

如何使用MDX来解决这个问题。

谢谢。

My data example:

id  value_a 
1   1.0
2   2.0
3   3.0
4   4.0

which I want is

id / value_a / recent_n_avg

1    1.0     0.33

2    2.0     1.00

3    3.0     2.00

4    4.0     3.00

recent_n_avg is average for recent n rows( n=3 in example).

How to use MDX to solve this problem.

Thanks.

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

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

发布评论

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

评论(1

怪我鬧 2024-12-12 17:34:38

如果您只想对一个维度执行此操作,并且该维度是平坦的,您可以为新的计算成员编写以下表达式:

SUM({[Dimension].CurrentMember.Lag(2):[Dimension].CurrentMember}, [Measures].[Your measure])/3

另外,您应该记住维度中的成员“All”和成员 # 1,2。

If you want do it only for one dimension and this dimension is flat you can write following expression for new calculated member:

SUM({[Dimension].CurrentMember.Lag(2):[Dimension].CurrentMember}, [Measures].[Your measure])/3

Also, you should remember about member "All" and members # 1,2 in your dimension.

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