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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.