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

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.

Reply
Anonymous
Not applicable

Getting % of an average column

Hello I am trying to get the % of a column when this column values are the average.

tonykv95_0-1651676416948.png

Basically want for my Avg of Days to be summed out (Total should be = 156.27) and then in the next column where I underlined the number for it to be 17.47 / 156.27 = 11.18%

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Avg as % =
var summaryTable = ADDCOLUMNS( ALLSELECTED('Table'[Request PBI]), "@val", CALCULATE(AVERAGE('Table'[Days])))
var currentValue = CALCULATE(AVERAGE('Table'[Days]))
return DIVIDE( currentValue, SUMX(summaryTable, [@val])

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Avg as % =
var summaryTable = ADDCOLUMNS( ALLSELECTED('Table'[Request PBI]), "@val", CALCULATE(AVERAGE('Table'[Days])))
var currentValue = CALCULATE(AVERAGE('Table'[Days]))
return DIVIDE( currentValue, SUMX(summaryTable, [@val])
Anonymous
Not applicable

Thank you so very much!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.