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
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
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.