Forum Discussion

fabiojoa's avatar
fabiojoa
Helper I
3 years ago
Solved

Problem with RANKX

I need realize a RANKX for all years (2020-2022) and a RANKX only for a selected year. I have two tables: fatVendas and dCalendario. 

I create a measure Total das Vendas = SUM(fatVendas[Total da Venda]). 

Create too a calculated table with:

Ranking por Mês/Ano =
     ADDCOLUMNS(
    DISTINCT(dCalendario[Mês/Ano]),
    "Receita Total", [Total das Vendas],
    "Rank Geral", RANKX(ALLSELECTED(dCalendario[Mês/Ano]), [Total das Vendas])
)
And I have this:

 

And sounds good! But, I need calculate a rank in the year, when a user select a one year, show a rank in a year. How to realize this?

9 Replies