I need some help generating a list of random numbers from a normal distribution. I would like to write a program that will generate 1200 random numbers given user-defined mean and standard deviation parameters and then put them into a single column of cells. I have been able to accomplish the task but not in a very efficient manner. Basically, I've generated a number, put it in a cell, move down one cell generate a new number, move down one cell, etc. This is extremely time-consuming as each step causes every previous random number to regenerate. Is there a way to generate all 1200 numbers and then put them into the column all at one time?
Thank you for any advice or suggestions.
Bookmarks