Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can someone Help me replicate the Excel Function PERCENTILE in Qlikview
Excel Function =PERCENTILE(B2:B8,0.8)
| ID | Value | PercentILE Excel Returns |
| 7 | 19 | 14.8 |
| 6 | 15 | |
| 5 | 14 | |
| 4 | 13 | |
| 3 | 12 | |
| 2 | 9 | |
| 1 | 8 |
fractile( Sales, 0.75 )
fractile( Sales, 0.75 )
How about PercentileRank ?
How about PercentileRank ?
=Fractile(Aggr(Value,Dim,Value), 0.25)
or you looking for rank function
rank( sum( Sales ))
This does not come up with PercentRank from Excel. If you look at the above table and values I am looking for the exact value that excel returns in the formulas.