我有一个很好的衡量标准,但我希望它动态显示当前年份和过去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] ) )
)
)