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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
mattao44
Frequent Visitor

Summarize a calculated measure using average instead of SUM

I have the following DAX that give the utilization of my team. It works well when slicing by individuals but when I try to do a grouping of them it adds up all of the percentages instead of averaging them. Is there a way to force DAX to average them instead of sum them? The TIMESHEETS table has the hours booked by my team and there are multiple rows per day and per person.

Utilization = 
CALCULATE (
    DIVIDE (
        SUM ( TIMESHEETS[Hours] ),
         (
            CALCULATE (
                DISTINCTCOUNT ( TIMESHEETS[Actual Date] ),
                'Calendar (Actual Date)'[Weekday/Weekend] = "Weekday"
            ) * 7.5
        )
    ),
    'Calendar (Actual Date)'[Weekday/Weekend] = "Weekday",
    'CHARGE CODES'[Billable/Non-Billable] = "Billable"
)

 

0 REPLIES 0

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors