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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
kfitzek
Regular Visitor

Measure not summarizing total amount showing in table

Hello all,

 

I have a measure that is doing some basic divison to calculate a conversion of weights. The amounts are coming out right in my table view, but the summary at the bottom is not adding up. I have a feeling the measure it's summing completely and its only counting certain line items. Any help would be great! Formual below and table showing the disconnect.

 

kfitzek_0-1749048730208.png

 

 

Converted KG (weight UoM only) =
DIVIDE(
    SUM('secure_prh_summary'[Qty]),
    SUM('Um conversion'[Conversion ])
)
1 ACCEPTED SOLUTION
SamsonTruong
Super User
Super User

Hi @kfitzek ,

Please try the following DAX measure and let me know if this achieves your desired result:

Converted KG (weight UoM only) =
SUMX(
    'secure_prh_summary',
    'secure_prh_summary'[Qty] / RELATED('Um conversion'[Conversion])
)

 

If this helped, please mark it as the solution so others can benefit too. And if you found it useful, kudos are always appreciated.

Thanks,

Samson

View solution in original post

1 REPLY 1
SamsonTruong
Super User
Super User

Hi @kfitzek ,

Please try the following DAX measure and let me know if this achieves your desired result:

Converted KG (weight UoM only) =
SUMX(
    'secure_prh_summary',
    'secure_prh_summary'[Qty] / RELATED('Um conversion'[Conversion])
)

 

If this helped, please mark it as the solution so others can benefit too. And if you found it useful, kudos are always appreciated.

Thanks,

Samson

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.