Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Gran Total en MATRIX

Hola

Mi datset de entrada es el siguiente:

ara_4_0-1596933637474.png

He creado un informe MATRIX de la siguiente manera:

ara_4_1-1596933714452.png

MEasure se calcula de la siguiente manera:

Measure á if(ISFILTERED('Sheet1 (2)'[Attributes] ), 'Sheet1 (2)'[value2],CALCULATE('Sheet1 (2)'[value2],'Sheet1 (2)'[Attributes]-"Actual"))
El MEasure anterior calcula los totales generales como suma de todos los datos reales. Mis otros requisitos son calcular totales en la columna FUM (columna de opción inv). en fum necesita agregar todos los valores de atributo de varianza
cualquier ayuda es apreciada
Búsqueda
1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hola @ara_4 ,

Puedes escribir tu medida de la siguiente manera:

Measure = 
IF (
    ISFILTERED ( 'Sheet1 (2)'[Attributes] ),
    'Sheet1 (2)'[value2],
    IF (
        MAX ( 'Sheet1 (2)'[invest] ) = "FUM",
        CALCULATE ( 'Sheet1 (2)'[value2], 'Sheet1 (2)'[Attributes] = "Variance" ),
        CALCULATE ( 'Sheet1 (2)'[value2], 'Sheet1 (2)'[Attributes] = "Actual" )
    )
)

res.png

Puede consultar más detalles desde aquí.

Saludos

Icey

Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

View solution in original post

2 REPLIES 2
Icey
Community Support
Community Support

Hola @ara_4 ,

Puedes escribir tu medida de la siguiente manera:

Measure = 
IF (
    ISFILTERED ( 'Sheet1 (2)'[Attributes] ),
    'Sheet1 (2)'[value2],
    IF (
        MAX ( 'Sheet1 (2)'[invest] ) = "FUM",
        CALCULATE ( 'Sheet1 (2)'[value2], 'Sheet1 (2)'[Attributes] = "Variance" ),
        CALCULATE ( 'Sheet1 (2)'[value2], 'Sheet1 (2)'[Attributes] = "Actual" )
    )
)

res.png

Puede consultar más detalles desde aquí.

Saludos

Icey

Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

Greg_Deckler
Super User
Super User

@ara_4 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


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.