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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I am trying to create some measures in power bi, where I want to divide each score by the sum and multiplay with another corrected sum amount for each group
Table 1
Corrected in excel formula is :=ROUND(C86/$C$98*$C$100,0) in B105 column formula in output table
My Output is
I need the above output Please share me anyone know that
Solved! Go to Solution.
Hi @Manigandan,
Can you please try this:
CorrectedSum =
VAR __AllSumDivide = CALCULATE(SUM(Table[FirstColumn]),ALL(Table))
VAR __AllSumMultiply = CALCULATE(SUM(Table[SecondColumn]),ALL(Table))
RETURN SUMX(Table,DIVIDE(Table[CColumn],__AllSumDivide)*__AllSumMultiply)
Hi @Manigandan ,
Please follow these steps:
Best Regards
Caroline Mei
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Manigandan ,
Please follow these steps:
Best Regards
Caroline Mei
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Manigandan,
Can you please try this:
CorrectedSum =
VAR __AllSumDivide = CALCULATE(SUM(Table[FirstColumn]),ALL(Table))
VAR __AllSumMultiply = CALCULATE(SUM(Table[SecondColumn]),ALL(Table))
RETURN SUMX(Table,DIVIDE(Table[CColumn],__AllSumDivide)*__AllSumMultiply)