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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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