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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello Everyone,
Appreciate it if you could please share how I can get the percentage of the sub-totals (Year1% and Year2%) in this table:
| Year1 | Year1 % | Year2 | Year2 % | |
| Region1 | 100 | 100% | 110 | 100% |
| Sub-Region1.1 | 65 | 43% | 70 | 64% |
| Sub-Region1.2 | 35 | 23% | 40 | 36% |
| Region2 | 150 | 100% | 160 | 100% |
| Sub-Region2.1 | 45 | 30% | 50 | 31% |
| Sub-Region2.2 | 55 | 37% | 60 | 38% |
| Sub-Region2.3 | 50 | 33% | 50 | 31% |
Thank You.
Solved! Go to Solution.
Hi @WAKAYN
Please refer to attached sample file with the solution
Amount = SUM ( 'Table'[Value] )% Amount =
DIVIDE (
[Amount],
CALCULATE ( [Amount], ALL ( 'Table'[Sub-Region] ) )
)
Hi @WAKAYN
Please refer to attached sample file with the solution
Amount = SUM ( 'Table'[Value] )% Amount =
DIVIDE (
[Amount],
CALCULATE ( [Amount], ALL ( 'Table'[Sub-Region] ) )
)
Thank you so much, tamerj1. This worked like a charm.
Thanks also to others who looked into this.
Sorry, pleae see corrected table below (Sub-Region 1.1, 1.2, etc. and some values are fixed):
| Year1 | Year1 % | Year2 | Year2 % | |
| Region1 | 100 | 100% | 110 | 100% |
| Sub-Region1.1 | 65 | 65% | 70 | 64% |
| Sub-Region1.2 | 35 | 35% | 40 | 36% |
| Region2 | 150 | 100% | 160 | 100% |
| Sub-Region1.1 | 45 | 30% | 50 | 31% |
| Sub-Region2.2 | 55 | 37% | 60 | 38% |
| Sub-Region2.3 | 50 | 33% | 50 | 31% |
Thank you.
this is the expected result. how is your dataset organized?
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 15 | |
| 14 | |
| 13 |