I'm having an issue with a dashboard that I'm creating.
I need to make a Pareto Chart and I found a lot of tutorials on the Internet of how to make it in Power BI, however, I need to use a measure that is a percentage and this is where I'm stuck.
Here's a part of my table:
I made a measure that is a percentage of Não_Recebido_Dinâmico
by Fat_Liq1
. The measure is:
% Inadimplência_Dinâmico = DIVIDE(SUM('Mapa_de_Faturamento (2)'[Não_Recebido_Dinâmico]);
SUM('Mapa_de_Faturamento (2)'[Fat_Liq.1])) + 0
So I need to make a Pareto Chart with the top 10 Cursos
by this measure. When I apply the ways of the Pareto Chart on the Internet it doesn't work because they use the total of the measure to make the accumulated percentage.
For example, these are the top 10 Cursos
by the measure % Inadimplência_Dinâmico
. I think that to make the Pareto Chart works properly, the total and the accumulated should be the sum of the measure, but that's not what happens in Power BI because it keeps considering it as a percentage.
I've tried to make the same measure as a calculated column but it doesn't work either, because in this case, it sums up the percentage of all rows.
I'm not familiar with the DAX functions of Power BI, so I need some help.
This is what I want in Power BI, but made in Excel:
Thank you all!