Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
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
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.