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 approximation in which I can maintain a limited number of variables (a sum, a rank, etc) and output the percentile as approximate as posible.
thanks
What I need is an approximation in which I can maintain a limited number of variables (a sum, a rank, etc) and output the percentile as approximate as posible.
thanks