When a customer has several workbooks open, one being mine. I would like to force my entire workbook to recalculate without causing the customer's other workbooks to recalculate.
Unfortunately, toggling between
Excel.Application.Calculation = xlCalculationAutomatic
and
Excel.Application.Calculation = xlCalculationManual
causes all workbooks to recalculate.
I found that I can use
Worksheets("myWSht"
.calculate
and scroll through my worksheets, but this is tedious. Also for other reasons (I hope to emulate the VBA technique in REXX a language of dinosaurs.) I would not like to do this.
Does anyone know how to force a single workbook to recalculate without causing other workbooks to recalculate?? Thanks! for your help!
-Mike
Unfortunately, toggling between
Excel.Application.Calculation = xlCalculationAutomatic
and
Excel.Application.Calculation = xlCalculationManual
causes all workbooks to recalculate.
I found that I can use
Worksheets("myWSht"
and scroll through my worksheets, but this is tedious. Also for other reasons (I hope to emulate the VBA technique in REXX a language of dinosaurs.) I would not like to do this.
Does anyone know how to force a single workbook to recalculate without causing other workbooks to recalculate?? Thanks! for your help!
-Mike