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.
Dear community,
Do you have any solution how can we show column total but should be on % of 100%.
I have this solution :
but i would like to change it like this , so total of subcategory should be 100% (calculation in blue are totally random just to show my expectaion : correct is 16,12% for 2,3% , 4,8% for 0,69% etc)
More information :
Thank you in advance
Hi @SpiroswayGR ,
Please try this:
Measure =
VAR _per =
CALCULATE ( SUM ( 'Table'[Revenue] ), ALLEXCEPT ( 'Table', 'Table'[Category] ) )
RETURN
IF (
HASONEVALUE ( 'Table'[Sub] ),
DIVIDE ( MAX ( 'Table'[Revenue] ), _per ),
_per
)
The final output is shown below:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
my results
my results
my results
my results
my results
my results
my results
my results
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.