Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Tengo una tabla simple con el número de semana del producto y una medida total corriente:
Running Total =
var maxdate = MAX(week)
return
CALCULATE(SUM(quantity),week<=maxdate)
Producto | 14 | 15 | 16 |
Macbook | 20 | 40 | 60 |
PC | 10 | 20 |
Mi problema es que no estoy obteniendo el total de ejecución para la semana 16 de PC del producto. Quiero que muestre 20
No hay datos para esa semana en la tabla, que es solo Producto / Semana / Cantidad.
Intenté vincularlo a una tabla de tiempos, pero todavía tengo el mismo problema
Hola @PowerBITestingG,
¿Podría intentar esto?
Running Total =
VAR MaxDate = MAX(week)
RETURN
CALCULATE(
SUM(quantity),
FILTER(
ALL(week),
week <= MaxDate
&& (ISBLANK(SUM(quantity)) || week > Max(week[week]))
)
)
Avíseme si necesita más ayuda.