How to stop help from poping up

D

DRV

I created an auto_open macro to set up a workbook which has a circular calculation. I set the options, calculations, iteration check box with the Auto_Open macro such that the spreadsheet functions will resolve the circular error. My problem is that when I open the file, the spreadsheet loads before the auto_open settings are made. As a result the help topic for circular error pops up. Is there a way to set the options before the sheets load to prevent the help window from appearing? or to turn help off automatically?


Sub auto_open()
With Application
.Iteration = True
.MaxChange = 0.001
End With
AddIns("Analysis ToolPak").Installed = True
AddIns("Solver Add-in").Installed = True
ActiveWorkbook.PrecisionAsDisplayed = False
End Sub
 
E

Earl Kiosterud

DRV,

Try Workbook_Open, in the ThisWorkbook module, instead of Auto_Open.
Auto_Open is a legacy thing.
--
Earl Kiosterud
mvpearl omitthisword at verizon period net
-------------------------------------------

DRV said:
I created an auto_open macro to set up a workbook which has a circular
calculation. I set the options, calculations, iteration check box with the
Auto_Open macro such that the spreadsheet functions will resolve the
circular error. My problem is that when I open the file, the spreadsheet
loads before the auto_open settings are made. As a result the help topic for
circular error pops up. Is there a way to set the options before the sheets
load to prevent the help window from appearing? or to turn help off
automatically?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top