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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

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
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.