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! Learn more

Reply
Anonymous
Not applicable

I need to Sum up a measure

I have a measure I created to get me a single value for each date. The code below allows me to take a value once since there are usually 3 records with the same MtdActual(this is because there are 3 shifts). 

 

My issue comes in the matrix visual that I am using this measure in. It works great for the subtotal of each product but the grand total is not calculated correctly  (Shown in the image at the bottom)

 

What I need to do now is get a sum of the measure but IM not sure how to do it

 

Heres My Measure that I would Like to Sum:

MaxMTDMaterialUnits =
MAXX(
KEEPFILTERS(VALUES(V_PBI_Daily_Attainment[Date])),
CALCULATE((MAX(V_PBI_Daily_Attainment[MtdActual]))))
 
 
As you see below my Grand total for the MTD Units is incorrect, but all my subtotals are good.
Plan vs Actual.jpg
 
 

 

 

 
2 REPLIES 2
Anonymous
Not applicable

PaulDBrown
Community Champion
Community Champion

@Anonymous 

 

Try: 

Totals for MaxMTDMaterialUnits = 
SUMX( table [Material], [MaxMTDMaterialUnits])




Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






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