Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.