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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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