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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Percentage of grand total not calculating as expected?

Hi,

 

I want to calculate the Y axis to show the % of the toal: 3.35m.

 

However, when I click 'Show value as percentage of grand total', 

 

 

It is showing the % of 350m, rather than 3.5m.....

 

Could some please advise? Thanks.



1 ACCEPTED SOLUTION
mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous ,

 

try this

 

GT% WAULT Income to Break = 
VAR _MAX = CALCULATE(MAX('Waterfall (New)'[WAULT Income to Break]), ALLSELECTED('Waterfall (New)' ))
RETURN
DIVIDE(MAX('Waterfall (New)'[WAULT Income to Break]),_MAX)
GT% WAULT Income to Expiry = 
VAR _MAX = CALCULATE(MAX('Waterfall (New)'[WAULT Income to Expiry]), ALLSELECTED('Waterfall (New)' ))
RETURN
DIVIDE(MAX('Waterfall (New)'[WAULT Income to Expiry]),_MAX)
Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


View solution in original post

6 REPLIES 6
Anonymous
Not applicable

 

@Anonymous , You need to create a measure like

 

Divide([Measure], 400000)

 

If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi,  I have added sample data, thanks.

mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous ,

can you provide a sample file?

The grand total will be the sum of all values without considering the X axis.

 

 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


Anonymous
Not applicable

Hi, I have added the sample data in a table in the question. Thanks.

mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous ,

 

try this

 

GT% WAULT Income to Break = 
VAR _MAX = CALCULATE(MAX('Waterfall (New)'[WAULT Income to Break]), ALLSELECTED('Waterfall (New)' ))
RETURN
DIVIDE(MAX('Waterfall (New)'[WAULT Income to Break]),_MAX)
GT% WAULT Income to Expiry = 
VAR _MAX = CALCULATE(MAX('Waterfall (New)'[WAULT Income to Expiry]), ALLSELECTED('Waterfall (New)' ))
RETURN
DIVIDE(MAX('Waterfall (New)'[WAULT Income to Expiry]),_MAX)
Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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 Solution Authors