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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors