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
Reddypk
Frequent Visitor

Need help in calculating percentile

two colums, Trial and enrollment number 
I need to calculate percentile for indevedual trial ID, Example Trial 1234 has 7 entries and the percentile column shoul get percentile.
highest enrolled number for trial 1234 will ger percentile as 1 and the lowest will get 0.9 or 0.5 or 0.4 whatever compared to hightst enrolled number for the specific tril ID

Trial IDEnrolledPercentile
12344 
123410 
123424 
123443 
123464 
123485 
12341091
123510 
123515 
123520 
123545 
1235501
   
   
1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @Reddypk 

 

You can try the following methods.

Percentile = 
var _N1 = MAXX(FILTER(ALL('Table'),[Trial ID]=EARLIER('Table'[Trial ID])),[Enrolled])
return 
DIVIDE([Enrolled],_N1)

vzhangti_0-1675321167002.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-zhangti
Community Support
Community Support

Hi, @Reddypk 

 

You can try the following methods.

Percentile = 
var _N1 = MAXX(FILTER(ALL('Table'),[Trial ID]=EARLIER('Table'[Trial ID])),[Enrolled])
return 
DIVIDE([Enrolled],_N1)

vzhangti_0-1675321167002.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.