Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hola
En mi ejemplo, mi medida no se ejecuta
quiero mostrar: si TotalProduct es null el TotalBudget else TotalProduct en la fila está bien, pero en el gran total es KO
Muchas gracias
Esto está relacionado con el contexto cuando agrega más valores a su tabla luego el cambio de contexto en este caso el producto agrega un nivel de granularidad que cambia los valores, porque en el mes de octubre cuando tiene valores no obtiene el 200 para 68100.
Pruebe la siguiente medida:
IfNotSaleThenBudget2 =
var SalesTable = SUMMARIZE (
sales,
'product'[product],
'Calendar'[Year],
'Calendar'[Month Number],
"TotalValue", [IfNotSalesThenBudget], "IDColumn",
'product'[product]& 'Calendar'[Year]&
'Calendar'[Month Number]
)
var FilterSalesValues = SELECTCOLUMNS(SalesTable, "FilterID", [IDColumn])
return
SUMX( union(
filter (SUMMARIZE (
budget,
'product'[product],
'Calendar'[Year],
'Calendar'[Month Number],
"TotalValue", [IfNotSalesThenBudget], "IDColumn",
'product'[product]& 'Calendar'[Year]&
'Calendar'[Month Number]
), NOT([IDColumn] in FilterSalesValues))
,SalesTable), [TotalValue])
Resultado a continuación y en archivo adjunto:
Hola @MFelix
Gracias por su respuesta
pero tu medida no funciona con mi modelo, creo un PBIX de noticias para simular el error
la matriz calcula 317K pero el número real es 318 K
Si tienes otra idea
Muchas gracias
Esto está relacionado con la transición de contexto cuando se está haciendo la comparación ya que la línea total el valor para el 42.802 por lo que su suma hasta el mismo valor tiene en la otra columna se debe hacer la siguiente medida:
IfNotSalesThenBudget = SUMX(VALUES('Calendar'[Month]),if([TotalProduct]=0,[TotalBudget],[TotalProduct]))
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.