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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I want to multiplication 50*1+30*0+20*0 for "İş ve Özel Hayat Dengesi" and make similar thing to all rows
Solved! Go to Solution.
Hi @gizempekk ,
How about this?
Measure 1 =
SUM ( Reasons[Value] ) * SUM ( 'Percent'[Percent] )
Measure 2 =
SUMX ( VALUES ( 'Percent'[Point] ), [Measure 1] )
Measure 3 =
VAR All_Sum =
SUMX ( ALL ( ReasonOrder ), [Measure 2] )
VAR Divide_ =
ROUND ( DIVIDE ( [Measure 2], All_Sum ), 4 )
RETURN
IF (
HASONEVALUE ( 'Percent'[Point] ),
SUM ( Reasons[Value] ),
[Measure 2] & " / " & Divide_ * 100 & "%"
)
For more details, please check the attached .pbix file.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Like this
Hi @gizempekk ,
How about this?
Measure 1 =
SUM ( Reasons[Value] ) * SUM ( 'Percent'[Percent] )
Measure 2 =
SUMX ( VALUES ( 'Percent'[Point] ), [Measure 1] )
Measure 3 =
VAR All_Sum =
SUMX ( ALL ( ReasonOrder ), [Measure 2] )
VAR Divide_ =
ROUND ( DIVIDE ( [Measure 2], All_Sum ), 4 )
RETURN
IF (
HASONEVALUE ( 'Percent'[Point] ),
SUM ( Reasons[Value] ),
[Measure 2] & " / " & Divide_ * 100 & "%"
)
For more details, please check the attached .pbix file.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 55 | |
| 42 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 113 | |
| 106 | |
| 38 | |
| 35 | |
| 26 |