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
Hello,
I have the following matrix that is composed of the rows of two fields of a table and two measures for the values. The matrix comes out correctly minus the total, as you can see it makes the sum of all the sub-records and what would interest me is for it to do the same operation as the sub-values.
The measurements dias rotura and %rotura are as follows:
% Rotura = [Cant Rotura]/[Dias Envio laborable2]
dias rotura = IF(COUNT('newintranet roturas'[codigo])=BLANK(),0,COUNT('newintranet roturas'[codigo]))
Dias Envio laborable2 = CALCULATE(COUNTROWS(Fechas),ALL(Fechas),DATESBETWEEN(Fechas[Date],[Fecha inicio],[Fecha final]),Fechas[Día Semana número] in {1,2,3,4,5})
Do you know how I can make the total do the same operation as the rows? or failing that, if that could not be done, eliminate that total, which is simply the sum.
Thank you
Solved! Go to Solution.
Hola @Syndicate_Admin ,
Crear medidas
Total = SUM('Table'[Value])
Percentage =
VAR a = SELECTEDVALUE('Table'[Value])
VAR b =
CALCULATE(
SUM('Table'[Value]),
ALLEXCEPT(
'Table',
'Table'[Type]
)
)
RETURN
a/b
Result =
IF(
ISFILTERED('Table'[Part]),
[Percentage],
1
)
Resultado final
Saludos
Alberto He
Si esta publicación ayuda, considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente
It worked well for me, now I no longer get the incorrect total, at least it comes out blank and everything else is correct.
Is there a way to calculate the total but without adding it?
Hola @Syndicate_Admin ,
Crear medidas
Total = SUM('Table'[Value])
Percentage =
VAR a = SELECTEDVALUE('Table'[Value])
VAR b =
CALCULATE(
SUM('Table'[Value]),
ALLEXCEPT(
'Table',
'Table'[Type]
)
)
RETURN
a/b
Result =
IF(
ISFILTERED('Table'[Part]),
[Percentage],
1
)
Resultado final
Saludos
Alberto He
Si esta publicación ayuda, considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente
Hola @Syndicate_Admin ,
Aquí algunos pasos que quiero compartir, puedes consultarlos si se ajustan a tu requerimiento.
Aquí están mis datos de prueba:
Crear una medida
Total =
IF(
ISFILTERED('Table'[Part]),
SUM('Table'[Value]),
BLANK()
)
Resultado final
Puede consultar esta documentación
Manejo inteligente de jerarquías en DAX - SQLBI
Saludos
Alberto He
Si esta publicación ayuda, considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente
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.