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
AlejandroPCar
Helper IV
Helper IV

Problem with SUMX and Matrix

Hi!

 

I have a strange problem here. I'm using a SUMX formula for this case. When I put in a matrix to verify the count for every person, the formula works very well.sumx2.png

 

The problem starts as soon as I remove the personID (the idea is to get the global count without the person) like this...  the SUMX just got crazy... at least the global total keeps fine (is very confusing).

sumx1.png

I would like to understand why is this happening. Here is my file: https://1drv.ms/u/s!AtTnrgPUQzQCgrQz7S3DIKPscD6ppA

 

Hope you guys can help me to solve that.

 

Nice day.

 

 

1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

hi, @AlejandroPCar 

This looks like a measure totals problem. Very common. See this post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907

You may try to add a new measure

Measure = IF(HASONEVALUE(Energia[intervencion]),[Inmediato_1],
CALCULATE(
            CALCULATE(
                COUNTROWS(Energia),
                Separacion[ifuturo] = 1
            ),
            FILTER(
                Separacion,
                (VALUES(Tiempo_Inicial[Fecha_Mes]) >= Separacion[fechain] &&
                VALUES(Tiempo_Inicial[Fecha_Mes]) >= Separacion[fechafi]) ||
                (VALUES(Tiempo_Final[Fecha_Mes]) >= Separacion[fechain] &&
                VALUES(Tiempo_Final[Fecha_Mes]) >= Separacion[fechafi])
            
        )))

Result:

6.JPG

Best Regards,

Lin

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-lili6-msft
Community Support
Community Support

hi, @AlejandroPCar 

This looks like a measure totals problem. Very common. See this post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907

You may try to add a new measure

Measure = IF(HASONEVALUE(Energia[intervencion]),[Inmediato_1],
CALCULATE(
            CALCULATE(
                COUNTROWS(Energia),
                Separacion[ifuturo] = 1
            ),
            FILTER(
                Separacion,
                (VALUES(Tiempo_Inicial[Fecha_Mes]) >= Separacion[fechain] &&
                VALUES(Tiempo_Inicial[Fecha_Mes]) >= Separacion[fechafi]) ||
                (VALUES(Tiempo_Final[Fecha_Mes]) >= Separacion[fechain] &&
                VALUES(Tiempo_Final[Fecha_Mes]) >= Separacion[fechafi])
            
        )))

Result:

6.JPG

Best Regards,

Lin

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-lili6-msft 

Thanks. Those posts are enough helpful.

Your measure with few changes works perfectly.

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.