缺少月度测量的总计

Missing a grand total for my month over month measure

我有一个衡量指标,可以让我了解预算的逐月变化。该度量定义为:

Bugdet Month over Month:=if(and(sum(budget[Value])<>0;[Budget, Previous Month]<>0);sum(budget[Value])-[Budget, Previous Month];0)

Budget, Previous Month:=CALCULATE(sum(budget[Value]);PREVIOUSMONTH(tDate[Date]))

当我在数据透视 table 中显示 Bugdet Month over Month 时,它显示正确的数字,但在总计中显示 0。是否可以在某处进行一些更改以使其显示总计中所有更改的总和?

粗略创建第三个措施:

Budget Month over Month Final:=SUMX ( VALUES(tdate[Date]), [Budget Month over Month])

这将独立迭代给定单元格中的每个月并逐月计算预算,然后将它们相加。因此,对于数据透视表 table 中的月份行值,这将等同于当前预算月环比衡量指标。

对于总计,它将显示数据透视表中每个月的总和。