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