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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
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!

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
Top Kudoed Authors