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
KSASSESSMENT
Regular Visitor

Average Calculation With Filter

Hi

 

Wonder if anyone can help.

 

I have a set of results. Basically column A has a list of people, Column B has a list of test names and Column C has a list of scores.

 

I am trying to write a measure that will allow an average score to be shown across all selected test names.

 

The issue I am having at the moment is that the average stays the same even after applying a filter.

Average of Score total for Score =
CALCULATE(AVERAGE('Results'[Score]), ALLSELECTED('Results'[Test Name]))

 

It is showing an average across all test names and if I filter to a specific test name the average score stays the same whereas I would like it to show the average score for that test name.

 

I have a tried so many different options and just can't get this one right.

 

Full NameTest NameScore
Lisa TaylorTest 167
Mark TaylorTest 287
Sam HughesTest 176
Sam TaylorTest 281

 

Can anyone point me in the right direction?

 

Regards

Lisa

 

1 ACCEPTED SOLUTION
V-pazhen-msft
Community Support
Community Support


Allselected is not the right function.

AverageAllTestname = CALCULATE(AVERAGE(Result[Score]),ALL(Result))
AverageByTestname = CALCULATE(AVERAGE(Result[Score]),ALLEXCEPT(Result,Result[Test Name]))
 
average all and allexcept.JPG

Paul,
Best

View solution in original post

2 REPLIES 2
V-pazhen-msft
Community Support
Community Support


Allselected is not the right function.

AverageAllTestname = CALCULATE(AVERAGE(Result[Score]),ALL(Result))
AverageByTestname = CALCULATE(AVERAGE(Result[Score]),ALLEXCEPT(Result,Result[Test Name]))
 
average all and allexcept.JPG

Paul,
Best
az38
Community Champion
Community Champion

Hi @KSASSESSMENT 

try 

 

Average of Score total for Score = 
CALCULATE(AVERAGE('Results'[Score]); ALLEXCEPT('Results';'Results'[Test Name]))

ALLSELECTED removes filter from column

ALLEXCEPT removes filters from other column

 

 

do not hesitate to give a kudo to useful posts and mark solutions as solution


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

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.