Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Solved! Go to Solution.
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)
					
				
			
			
				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 , 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.
Hi, I have added sample data, thanks.
Hi @Anonymous ,
can you provide a sample file?
The grand total will be the sum of all values without considering the X axis.
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
Hi, I have added the sample data in a table in the question. Thanks.
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)
					
				
			
			
				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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.