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

See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap

Reply
JayPow28
Helper I
Helper 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])

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])

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
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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