我正在尝试使用 DAX 计算 Power BI 的年度百分比变化,在这里需要帮助。这是我在 Power BI 中的数据源:
然后我使用这个公式计算了平均租金(对于“工作室”类型):
AVGRentStudio = CALCULATE(AVERAGE('Rental Trend'[Rent]),'Rental Trend'[Type] = "Studio")
现在我想计算一个年度百分比变化(到上一年)。
这是我尝试过的,但结果并不准确。
RentChange =
CALCULATE (
IF (
HASONEVALUE ( 'Rental Trend'[Year] ),
DIVIDE (
SUM ( 'Rental Trend'[Rent] ),
CALCULATE (
SUM ( 'Rental Trend'[Rent] ),
'Rental Trend'[Year]
= FORMAT ( VALUES ( 'Rental Trend'[Year] ) - 1, BLANK () )
)
)
)
- 1,
'Rental Trend'[Type] = "Studio"
任何人都可以帮助如何计算年度百分比变化?
谢谢