Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Syndicate_Admin
Administrator
Administrator

El análisis de ABC no funciona

Hola a todos,
Estoy tratando de implementar este análisis: https://www.daxpatterns.com/abc-classification/
Escribí con mis mesas y no funciona.

ABC Class Client = 
VAR SellByClient = ADDCOLUMNS(CUSTOMERS, "Sells", [Sells value])
VAR CurrentSells = [Sells value]
VAR BetterSells = FILTER(SellByClient, [Sells] >= CurrentSells)
VAR CumulatedSells = SUMX(BetterSells, [Sells])
VAR AllSells = CALCULATE([sells value], ALL(CUSTOMER))
VAR CumulatedPct = DIVIDE(CumulatedSells, AllSells)

RETURN SWITCH(TRUE, CumulatedPct <= 0.8, "A", CumulatedPct <= 0.95, "B", "C")

con:

Sells value = 
SUM(ORDERS[Value])

Tengo dos mesas que son:
CLIENTE(Cust_ID, Cust_Info)
PEDIDOS(Ord_ID, Ord_Cust_ID, Ord_Val)
donde los PEDIDOS (Ord_Cust_ID) CUSTOMER(Cust_ID) .

Vi que me devuelve el porcentaje y no el porcentaje acumulado en la línea 5.

0 REPLIES 0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.