计算 Dax 中的出现次数

Count occurrences in Dax

我有以下 table:

现在,我想对 table 应用一些 dax 指令,并在图表中显示此数据:

或者换句话说,我如果是第一次出现国家的名字,它必须显示12第二次。

尝试创建名为 Occurrences:

的计算列
Occurrences =
CALCULATE (
    COUNT ( [Pais] ),
    FILTER (
        'Table',
        [Index] <= EARLIER ( 'Table'[Index] )
            && [Pais] = EARLIER ( 'Table'[Pais] )
    )
)

索引必须是每行中的增量键。