Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
2 | |
1 | |
1 | |
1 | |
1 |