controlling when random numbers are recalculated in excel?
I have an Excel 2003 workbook with approximately 80,000 random numbers. Each of those has about 10 more cells that are depend upon the random number. So every time I make any change to anything, excel recalculates 800,000 cells. It takes about a minute to complete a recalculate.
Is there an option somewhere that would restrict when random numbers get redone without interfering with other recalculations?
The only thing I've seen so far is to to put a conditional around the rand function (e.g. =if($A$1,rand(),B1) so that random numbers only take effect when cell A1 is true. Unfortunately, this method wouldn't really work for what I am trying to do.