Michael thank you for your help. However I still haven't been able to solve my problem.
Imagine I have a list of numbers (many)
1324.34
3432.43
43543.32
11.343
444.213
...
...
What I need is to find the 10,50 and 90th percentile of the list without storing them in a queue or an array and...
I forgot to mention that the data is not sorted therefore I cannot use the N forula for Percentiles and I can't sort the data either because it will also take much memory and time
I am trying to generate a function to calculate percentile from a list of random numbers in Excel. However I do not want to use the formula WorksheetFunction.Percentile(queue(), 0.5) because I have too many numbers and generating a queue() will take too much memory.
What I need is an...
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.