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
jonasr
Advocate I
Advocate I

calculate measure as an individual deviance from average

Hi all,

 

I am trying to calculate new measure as a deviation of individual ratio from the overall average ratio across all individuals. It will be displayed in a bar chart and the number of rows will depend on some other attribute slicers so it needs to be a measure so that it can change dynamically.

 

Example data:

 

Person | home_p
xxx       | 1
xxx       | 0
xxx       | 1
xxx       | 0
xxx       | 1
yyy       | 1
yyy       | 1
yyy       | 1
yyy       | 1
yyy       | 1
aaa       | 1
aaa       | 1
aaa       | 1
bbb       | 0
bbb       | 0
bbb       | 0


 

 

The first part is simple

 

home_p_rate = SUM('score'[home_p])/COUNT('score'[home_p])

 

which gives me the individual ratios in the bar chart.

 

Now I need to add something like this to get the deviance from overall average:

 

home_p_rate_dev = SUM('score'[home_p])/COUNT('score'[home_p]) - AverageAcrossAllIndividuals( SUM('score'[home_p])/COUNT('score'[home_p]) )

 

Any idea how to approach this?

 

Thanks

 

Jonas 

 

1 ACCEPTED SOLUTION
v-haibl-msft
Employee
Employee

@jonasr

 

In this scenario, you can use below measure formula to get the deviance from overall average.

 

home_p_rate_dev = 
VAR AverageAcrossAllIndividuals =
    CALCULATE ( AVERAGE ( score[home_p] ), ALL ( score ) )
RETURN
( [home_p_rate] - AverageAcrossAllIndividuals )

calculate measure as an individual deviance from average_1.jpg

 

Best Regards,

Herbert

View solution in original post

2 REPLIES 2
v-haibl-msft
Employee
Employee

@jonasr

 

In this scenario, you can use below measure formula to get the deviance from overall average.

 

home_p_rate_dev = 
VAR AverageAcrossAllIndividuals =
    CALCULATE ( AVERAGE ( score[home_p] ), ALL ( score ) )
RETURN
( [home_p_rate] - AverageAcrossAllIndividuals )

calculate measure as an individual deviance from average_1.jpg

 

Best Regards,

Herbert

Very simple and nice solution. Thank you!

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.