fpskidmark
Board Regular
- Joined
- Sep 11, 2009
- Messages
- 139
Hi Guru,
I'm currently working on a pretty big workbook that is set on Manual Workbook Calculation (Application.Calculation = xlManual).
Q: How can I add a new workbook and set that workbook to Automatic Workbook calculation (Application.Calculation = xlAutomatic) and still keep my big workbook set to Manual Workbook Calculation?
Thank you,
FP
I'm currently working on a pretty big workbook that is set on Manual Workbook Calculation (Application.Calculation = xlManual).
Q: How can I add a new workbook and set that workbook to Automatic Workbook calculation (Application.Calculation = xlAutomatic) and still keep my big workbook set to Manual Workbook Calculation?
Code:
Dim wbn As Workbook
Set wbn = Workbooks.Add
Thank you,
FP