Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hola a todos,
Hice este gráfico:
Para ello, creo este mesure que funciona para calcular mi porcentaje de pareto:
Pareto % =
VAR ___TotalStock = calculate(sum(ATC_PRXL[Quantit� ]),ALLSELECTED(ATC_PRXL))
VAR __StockActuel =sum(ATC_PRXL[Quantit� ])
VAR __SummarizeTable =
SUMMARIZE(
ALLSELECTED(ATC_PRXL),
ATC_PRXL[Code Article ],
"Stock",SUM(ATC_PRXL[Quantit� ])
)
Var __StockCumule =
sumx(
filter(__SummarizeTable, [Stock] >=__StockActuel),
[Stock]
)
RETURN
__StockCumule/___TotalStock
Ahora quiero contar el número de artículos que tienen un porcentaje de pareto de menos de 0.8 (En el gráfico, corresponde al color rojo), pero no puedo hacerlo ...
Alguien puede ayudarme por favor ?
Gracias de antemano,
JL6