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
bheepatel
Resolver IV
Resolver IV

Calculate the sum of group percentiles based on dynamic percentile

Hi

 

I have the following table below which has the results of a simulation for multiple clients. In the example below, there are 3 clients (A, B and C) and the outcome of 4 simulations that were run for each client.

 

ClientOutput
A9197
A2816
A3359
A1923
B7128
B6974
B6341
B2994
C8437
C9052
C3412
C13

 

I also have a slider whereby the user can input a percentile value. I then need to calculate what is the Output value at that percentile for each client and sum it to show the Total.

 

For example, if the user selects the 25th percentile, then:

Total = 25th Percentile Value for Client A + 25th Percentile Value for Client B + 25th Percentile Value for Client C

Total = 1923 + 2994 + 13

Total = 4930

 

Another example, if the user selects the 80th percentile, then:

Total = 80th Percentile Value for Client A + 80th Percentile Value for Client B + 80th Percentile Value for Client C

Total = 9197 + 7128 + 9052

Total = 25377

 

The measure needs to calculate the total dynamically based on a percentile input. 

 

Would appreciate any help on this!

1 ACCEPTED SOLUTION
bheepatel
Resolver IV
Resolver IV

This did the trick:



vClientPercentileInput = 0.25

Total = SUMX( SUMMARIZE(Table, Table[Client], "Total", PERCENTILE.INC(Table[Output], vClientPercentileInput)), [Total])

 

View solution in original post

2 REPLIES 2
bheepatel
Resolver IV
Resolver IV

This did the trick:



vClientPercentileInput = 0.25

Total = SUMX( SUMMARIZE(Table, Table[Client], "Total", PERCENTILE.INC(Table[Output], vClientPercentileInput)), [Total])

 

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.