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

Reply
Anonymous
Not applicable

Creating an average

Hi,

 

I have a list of percentages for people in diofferent departments like below:

Screen Shot 2019-07-18 at 12.33.33.png

 and I would like to build a measure to find the average Billing target % for each department:

 

for example for the table above I am looking for:-

 

 

sum of billing target % (627%)

/ number of people in the client dept (7 people)

= 89.57%

 

 

I have tried doing this in a measure but cannot seem to get this to work?

 

Can anybody help with the best way to do this?   

 

Many thanks,

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi  @Anonymous ,

For your requirement, please refer to this measure.

Measure =
CALCULATE (
    AVERAGE ( 'Table 2'[Billing Target] ),
    ALLEXCEPT ( 'Table 2', 'Table 2'[Department], 'Table 2'[Name] )
)

Here is the output.

Capture.PNG

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi  @Anonymous ,

For your requirement, please refer to this measure.

Measure =
CALCULATE (
    AVERAGE ( 'Table 2'[Billing Target] ),
    ALLEXCEPT ( 'Table 2', 'Table 2'[Department], 'Table 2'[Name] )
)

Here is the output.

Capture.PNG

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi,

 

Please try with below DAX code.

 

Average % = AVERAGEX(FILTER(Table1,Table1[Department]="Client"),Table1[Billing Target])
Department.png

 

HotChilli
Super User
Super User

The simplest way is to drag 'Department' on to a table.

Then drag 'Billing Target' next to it and choose 'Average' in the dropdown on the Values field well.

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