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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Syndicate_Admin
Administrator
Administrator

Sum values Matrix

Best regards

Create this matrix however the value of the result of total collection hours is not waiting as I can visualize in this table that sum in a correct way? thank you in advance

jhonnyav_0-1666816103455.png

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

Hi, @Syndicate_Admin 

It is very common for Total inconsistencies in totals using measures.

You can try to solve this problem using the following method:

You can use the SUMMARIZE() function to create a virtual table to calculate your measures, and then use the SUMX() function to sum up your measures,like this:

Measure = var _t = SUMMARIZE('Table','Table'[Customer], "value", [Total Horas cobro])
return
SUMX(_t,[value])

 

If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.

 

Best Regards,

Aniya Zhang

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

1 REPLY 1
v-yueyunzh-msft
Community Support
Community Support

Hi, @Syndicate_Admin 

It is very common for Total inconsistencies in totals using measures.

You can try to solve this problem using the following method:

You can use the SUMMARIZE() function to create a virtual table to calculate your measures, and then use the SUMX() function to sum up your measures,like this:

Measure = var _t = SUMMARIZE('Table','Table'[Customer], "value", [Total Horas cobro])
return
SUMX(_t,[value])

 

If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.

 

Best Regards,

Aniya Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors