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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
JayPow28
Resolver I
Resolver I

Average of Column Values

Hi,

 

I have a Weekly Percent column in a matrix visual that I have calculated using the following formula:

Weekly Percent =
Var BillHrs = SUM(timeentries[Billable Hours])
Var WorkHrs = MAX('Employee Working Hours'[Working Hours])
Return
(Divide(BillHrs, WorkHrs, 0))
 
As you can see from the screen shot below the sub total column is not showing an average of this column:
Avg.PNGFyi, Hours is a fixed number column, working hours and billable hours are summed totals.
Displaying in the subtotal is not necessary if its more difficult. I can turn off the subtotals and use a measure to calculate and display in a card if that is more helpful.
 
Thanks,
Jason
 
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@JayPow28 , You need to make sure hours sum up over week

 

Var WorkHrs = sumx(values(Table[Week]),calculate(MAX('Employee Working Hours'[Working Hours])))

 

or

 

Var WorkHrs = sumx(summarize(Table, Table[employee],Table[Week],"_1",calculate(MAX('Employee Working Hours'[Working Hours]))),[_1])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@JayPow28 , You need to make sure hours sum up over week

 

Var WorkHrs = sumx(values(Table[Week]),calculate(MAX('Employee Working Hours'[Working Hours])))

 

or

 

Var WorkHrs = sumx(summarize(Table, Table[employee],Table[Week],"_1",calculate(MAX('Employee Working Hours'[Working Hours]))),[_1])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thank you Amit, that sorted it.

 

Regards,

Jason

 

 

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.

Top Solution Authors