Forum Discussion
srimathyKarthik
2 years agoNew Member
Calculating 95th percentile
Hai, I want to calculate the 95th percentile for the transfercount data that is on june month and for the year 2024 TeamID TeamName TransferCount IncidentDate 3457 Sas 6 ...
- Anonymous2 years ago
Thanks for the reply from Shravan133.
Here is my testing for your reference:
Sample data:
Modify the measure as follows:
95% = CALCULATE( PERCENTILE.EXC(Query1[TransferCount], 0.95), FILTER( ALL(Query1), MONTH(Query1[IncidentDate]) = 6 && YEAR(Query1[IncidentDate]) = 2024 ) )Output:
Best Regards,
Yulia XuIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
srimathyKarthik
2 years agoNew Member
95th percentile vlaue i tried to put it in a table to see the value it shows 17, but it not able to visualise as a percentile
line
- Anonymous2 years agoNot applicable
Thanks for the reply from Shravan133.
Here is my testing for your reference:
Sample data:
Modify the measure as follows:
95% = CALCULATE( PERCENTILE.EXC(Query1[TransferCount], 0.95), FILTER( ALL(Query1), MONTH(Query1[IncidentDate]) = 6 && YEAR(Query1[IncidentDate]) = 2024 ) )Output:
Best Regards,
Yulia XuIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.