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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.