0

我已经根据以下链接创建了 YTD 计算:“ http://saldeloera.wordpress.com/2013/02/07/ssas-how-to-create-dynamic-time-calculations-to-reuse-over-any -measure/?blogsub=confirming#blog_subscription-2 "

以下是我可以在 excel 中看到的结果集:

Row Labels  Total Bottles - WeeklyTEB   Weekly-NEW QTY
CurrentMonth        3606357.755         1978514117
CurrentYear         3606357.755         1978514117
PYYTD               3606357.755         1978514117
SelectedDate        3606357.755         1978514117
YTD                 3606357.755         1978514117
Unknown             3606357.755         1978514117
Grand Total         3606357.755         1978514117

测量值重复。我哪里错了?

4

1 回答 1

0

备注部分指出,YTD 函数仅适用于日历年。

我建议使用PeriodsToDate 函数

所以如果你想要一个财政年初至今:

SUM(  PeriodsToDate   (   [Date].[Fiscal YQMD].[Fiscal Year]
                          ,[Date].[Fiscal YQMD].CurrentMember
                      )
      ,[Measures].[Revenue]
   )

你的度量不应该[Measures].YEARTODATE是你试图聚合的度量吗?我猜像一个领域[Measures].[Revenue]

于 2013-12-04T18:12:16.567 回答