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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

divide row by column total for each set of values

Hello hope you can help me.

 

I am trying to create a measure that looks into the quantity (tbwght) for each row and divides it by the total quantity (tbwght) for all the rows - in the example  1120. This has to be automatically done for different set selections of tbinvrel - first column. Can you kindly help

 

test.png

1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

hi, @Anonymous 

You could get it just by this formula

 

Measure =
DIVIDE (
    [tbwght],
    CALCULATE (
        [tbwght],
        FILTER ( ALLSELECTED ( 'Table' ), Table[tbinvrel] = MAX ( Table[tbinvrel] ) )
    )
)

Best Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-lili6-msft
Community Support
Community Support

hi, @Anonymous 

You could get it just by this formula

 

Measure =
DIVIDE (
    [tbwght],
    CALCULATE (
        [tbwght],
        FILTER ( ALLSELECTED ( 'Table' ), Table[tbinvrel] = MAX ( Table[tbinvrel] ) )
    )
)

Best Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
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 Kudoed Authors