Setting default number of iterations within ALL my excel spreadshe

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I wish the default number of iterations within ALL my excel spreadsheets to
be set at the maximum number viz. 9999. Presently, whenever saved
spreadsheets are recalled they have reverted to the default of 100 iterations
irrespective of the fact that at the time of saving them the iteration
frequency level had been changed to 9999. Please, can anyone help! Thanks
Gavin Bulman
 
Gavin,

Put this line into the workbook open event of all your workbooks:

Application.MaxIterations = 9999

HTH,
Bernie
MS Excel MVP
 
Bernie

Thanks so much for the response.

I possibly should have mentioned that I am working on Excel 2000 – does that
make a difference to your suggested action to achieve my aim of having
Excel always perform maximum number of iterations when I open any
excel spreadsheet? If not then I need your help again
as I don't know where to " Put this line into the workbook open event of all
your workbooks"!!!!
Please help!
Thanks Gavin
 
Bernie

Thanks so much for the response.

I possibly should have mentioned that I am working on Excel 2000 – does that
make a difference to your suggested action to achieve my aim of having Excel
always perform maximum number of iterations when I open any excel
spreadsheet? If not then I need your help again as I don't know where to "
Put this line into the workbook open event of all your workbooks"!!!!
Please help!
Thanks Gavin
 
Gavin,

Visit

http://www.mvps.org/dmcritchie/excel/event.htm

for background on using events. You want to use the Thisworkbook objects workbook_open event - save
the file as your Book.xlt and other .xlt files and Excel will use that anytime you create a new
workbook. You will need to add it to each of the existing workbooks that you want to have this
functionality.

HTH,
Bernie
MS Excel MVP
 
Back
Top