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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
wooand
Helper II
Helper II

Calculating Percentage Values

So, in the table below I need to calculate the 'Percentage Volume' and 'Percentage Cost' columns.  Can anyone help me please?

 

Capture.JPG

1 ACCEPTED SOLUTION
nickchobotar
Skilled Sharer
Skilled Sharer

Hi @wooand

 

Here you go:

Percentage Volume = 
DIVIDE(
	SUM(Table1[Total Volume]),
	CALCULATE(
		SUM(Table1[Total Volume]),
		ALLSELECTED()
	)
)



Percentage Cost = 
DIVIDE(
	SUM(Table1[Total Cost]),
	CALCULATE(
		SUM(Table1[Total Cost]),
		ALLSELECTED()
	)
)

Thanks, N -

View solution in original post

3 REPLIES 3
nickchobotar
Skilled Sharer
Skilled Sharer

Hi @wooand

 

Here you go:

Percentage Volume = 
DIVIDE(
	SUM(Table1[Total Volume]),
	CALCULATE(
		SUM(Table1[Total Volume]),
		ALLSELECTED()
	)
)



Percentage Cost = 
DIVIDE(
	SUM(Table1[Total Cost]),
	CALCULATE(
		SUM(Table1[Total Cost]),
		ALLSELECTED()
	)
)

Thanks, N -

Perfect.  Many thanks indeed @nickchobotar.  You've saved my keyboard from a beating!

Thank you @wooand  

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.