动态度量以显示当年和前两年的结果

时间:2019-01-11 21:26:19

标签: powerbi data-visualization dax

我有一个很好的衡量标准,但我希望它动态显示当前年份和过去2年的结果,而不是我手动选择年份。

这可能吗?

这是我目前的措施:

DistinctAccount = DISTINCTCOUNT('AccountTable'[AccountId])

AccountMembers =
CALCULATE (
    [DistinctAccount],
    FILTER (
        ALLSELECTED ( 'Calendar'[Date] ),
        ( 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) )
    ),
    FILTER (
        ALLSELECTED ( Identifier[Termination Year] ),
        ( Identifier[Termination Year] > SELECTEDVALUE ( 'Calendar'[Year] ) )
    )
)

0 个答案:

没有答案