Power BI中的移动平均线
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Power BI中的移动平均线相关的知识,希望对你有一定的参考价值。
我有一个数据集,如果答案是否有用,日常用户可以从论坛回答问题。
所以我计算:
- a measure that calculate the total answer by yes: answerYes
- a measure that calculate the total answer (yes or no): answerTot
- a measure that calculate the ratio: answerPercYes= DIVIDE(answerYes,answerTot)
我需要的是在7天内计算我日期维度(answerDate)的移动平均线。我怎样才能在PowerBI中实现这一目标?
非常感谢!
答案
你可以尝试这样的事情:
movingAverage:=
CALCULATE(
[answerPercYes]
,DATESINPERIOD(
'answerDate'[Date]
,max('answerDate'[Date])
,-7
,DAY
)
)
以上是关于Power BI中的移动平均线的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Power BI 中使用 DAX 获取柱形图的平均列百分比度量?
如何使用 Power BI 从平均值中找到 Measure 中每个值的 z 分数?