The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
2 | |
1 | |
1 | |
1 | |
1 |