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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
MiKeZZa
Post Patron
Post Patron

Average of Average

Hi all,

 

I'm having trouble while making an 'average of an average'. I see many people asking this here, but I can't find anything that solves my problem....

 

I'm having this data:

Naamloos.png

 

What you see is a table with: employees have records per day, most of the time 1 record. When they have more than 1 function/role in the organization there are more records (like emp_id 3). 

 

Naamloos.png

 

Now I want to calculate the duration of a sickness. I have this:

Naamloos2.png

 

But I want for the total this:

 

3.5 + 1 + 7 = 11.5, based on 3 persons so total is: 11.5/3= 3.83 and not 4.4.

 

So it must be the average of the average per person. How can I do this?????

 

 PBIX-file with these data and Measure is here: https://ufile.io/g96mu

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @MiKeZZa

 

Create a new MEASURE as follows which will refer your original MEASURE

 

Measure 2 =
IF (
    HASONEFILTER ( emp[Name] ),
    [Measure],
    AVERAGEX ( ALLSELECTED ( emp[Name] ), [Measure] )
)

View solution in original post

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

Hi @MiKeZZa

 

Create a new MEASURE as follows which will refer your original MEASURE

 

Measure 2 =
IF (
    HASONEFILTER ( emp[Name] ),
    [Measure],
    AVERAGEX ( ALLSELECTED ( emp[Name] ), [Measure] )
)

Exactly what I was looking for!

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.