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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
MarkusBohse
Regular Visitor

How to calculate average over a subset of all

I'm having three tabels like this:
Employee (EmpID, name, EmployeeAge, companyID,...)
Comapny (CompanyID, Name, RegionID)
Region (RegionID, Name)
 
What I need is a calculation of the average EmployeeAge for the selected company, the whole region and overall.
The first one is easy and so is the last one using the ALL function. But I'm struggling to get the average for the region of the selected company.
I had a look at ALLEXCEPT, but so far I cannot get to return the correct result.
Any hints are appreciated
1 REPLY 1
Anonymous
Not applicable

-- If the structure is:
-- Employee[CompanyID] * : 1 Company[CompanyID]
-- Company[RegionID] * : 1 Region[RegionID],
-- then:

[Avg Employee Age] = AVERAGE( Employee[EmployeeAge] )

-- This measure calculates the average age
-- of all employees that work in companies
-- that belong to regions that are visible
-- in the current context. For instance,
-- if one employee has been selected, then
-- it'll return the average age for the
-- region to which the company of the employee
-- belongs.

[Avg Age for Regions] =
var __visibleRegions =
	SUMMARIZE(
		Employee,
		Region[RegionId]
	)
var __avgForVisibleRegions =
	CALCULATE(
		[Avg Employee Age],
		ALL( Company ),
		__visibleRegions
	)
return
	__avgForVisibleRegions

This measure honors all the filters that have been put on the Empolyee table itself.

 

Best

Darek

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors