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! Learn more
Hello BI Fam,
I have a problem in calculating the total of calculated measure. The below sc shows the table, Lateslam_DPMO and Late_slam_penalty are calculated measures. The conditional measures are also posted in the pictures. 
Now i want to calculate the sum of those calculated measures. I have applied the CALCULATE func but it is not giving me the right answer. It would be appreciated if some one from the family understand this and help in finding the solution.
Solved! Go to Solution.
You can use a SUMX iterator to get you the total you are looking for I think. It takes a list of values (looks like the CW field in your case), calculates an amount then sums up each row.
Late_Slam_Penalty_Total = SUMX ( VALUES ( 'YourTable'[CW] ), [Late_slam_penalty] )
You would need to change the name of the table / field in this part
VALUES ( 'YourTable'[CW] )
to match your model.
You can use a SUMX iterator to get you the total you are looking for I think. It takes a list of values (looks like the CW field in your case), calculates an amount then sums up each row.
Late_Slam_Penalty_Total = SUMX ( VALUES ( 'YourTable'[CW] ), [Late_slam_penalty] )
You would need to change the name of the table / field in this part
VALUES ( 'YourTable'[CW] )
to match your model.
Thank you😊. It worked.
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.