Thanks for your replies. My situation is little more complex, I have in column A with values P & R, I want to calculate Percentile for both P& R seperately and number of values for P& R is not constant every time.
Thanks
This is the macro I have currently. I am not able to do this for more than 5400 rows. How can I make it happen?
'MACRO TO CALCULATE PERCENTILE
Dim Arrray(1 To 5000) As Variant
Dim myVar As Double
For Each cel In Range("a1:a5000")
If cel.Value <> "" Then
Arrray(cel.Row) = cel.Value
End...
Can I get some help for writing a macro for calculating PERCENTILE. The data set will always be in one column but the number of rows will be changing.
I can give an example for the calculation
Data Set Count
10 1
20 2
30 3
40 4
50 5
Lets...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.