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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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