March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hola a todos,
Vi este problema muchas veces, pero no puedo parecer solucionarlo.
Estoy trabajando con datos de ventas (jerarquía de productos, clientes, ubicaciones, etc.). Actualmente el modelo tiene 2 calendarios. Uno activo y segundo inactivo utilizado para comparar dos períodos de tiempo.
El problema principal es la medida que tiene la declaración IF dentro y donde los totales no están funcionando.
medida: IF(OR(price using calendar 1-0,price using calendar 2-0),
0,
(precio del calendario 1 precio del calendario 2)*cantidad del calendario 1.
Medir desde el calendario 2 está utilizando USERELATIONSHIP y funciona bien.
Cuando uso datos en tablas, me da buenos datos por fila. El problema es con totales y no puedo encontrar una solución alternativa para IF.
¡Gracias!
Solved! Go to Solution.
Hola @MrMP
Usted puede probar algo como:
CALCBF_New =
VAR _table =
SUMMARIZE ( Table1, Table1[column], "_Value", [measure] )
RETURN
IF ( HASONEVALUE ( Table1[column] ), [measure], SUMX ( _table, [_Value] ) )
Hola @MrMP
Usted puede probar algo como:
CALCBF_New =
VAR _table =
SUMMARIZE ( Table1, Table1[column], "_Value", [measure] )
RETURN
IF ( HASONEVALUE ( Table1[column] ), [measure], SUMX ( _table, [_Value] ) )
@MrMP Esto parece un problema de totales de medida. Muy común. Vea mi post al respecto aquí: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Además, esta Medida Rápida, Medir Totales, La Palabra Final debe obtener lo que necesita:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
@MrMP , En el caso de las medidas, el contexto de la fila reproduce una fila y el total general se calcula de nuevo.
Por lo tanto, cuando se utiliza el mismo contexto en total general, puede pasar por alto ese valor y el total no será el mismo.
Es por eso que obligamos a un total a ser recalculado desde el nivel de fila usando valores o resumiendo
Sumx(Values(Table[Group By]), [Measure])
Sumx(summarize( Table, Table[Group By], "_1", [Measure]),[_1])
referir estos estos
https://www.youtube.com/watch?v=ufHOOLdi_jk
https://www.youtube.com/watch?v=Rii_6qkLNh8
https://www.youtube.com/watch?v=Ka7Ds4EAjNQ
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.