Calculation

  • Thread starter Thread starter Farhad
  • Start date Start date
F

Farhad

My question is if there is any way to setup excel to calculate one open file
manualy and other open files automaticaly. Please help me if anybody knows
about it.

Thanks,
 
My question is if there is any way to setup excel to calculate one open file
manualy and other open files automaticaly. Please help me if anybody knows
about it.

Thanks,

why not use an Application.Calculation = xlCalculationManual in an
Open event for this workbook?
To do this click Alt + F11. Go to the workbook that you want to add
this to on the xl icon where it says This Workbook double click.
Change the pull downs at the top to be workbooks and Open. then put
in this code.

Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub

Now when this workbook is opened it shuts off the calculation. you
can add anouther event to turn it back on.
Thanks,
Jay
 

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

Back
Top